File tree 3 files changed +35
-1
lines changed
3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export AWS_SECRET_ACCESS_KEY=***
24
24
./cortex.sh install
25
25
```
26
26
27
- See [ cluster configuration] ( config.md ) options to customize your installation.
27
+ See [ cluster configuration] ( config.md ) to customize your installation.
28
28
29
29
## Installing and configuring the CLI
30
30
Original file line number Diff line number Diff line change
1
+ # Upgrade
2
+
3
+ ## Prerequisites
4
+
5
+ 1 . [ AWS credentials] ( aws.md )
6
+ 2 . [ Docker] ( https://docs.docker.com/install )
7
+
8
+ ## Upgrading Cortex
9
+
10
+ See [ cluster configuration] ( config.md ) to customize your installation.
11
+
12
+ <!-- CORTEX_VERSION_MINOR -->
13
+
14
+ ``` bash
15
+ # Download
16
+ curl -O https://github.com/raw/cortexlabs/cortex/master/cortex.sh
17
+
18
+ # Change permissions
19
+ chmod +x cortex.sh
20
+
21
+ # Set AWS credentials
22
+ export AWS_ACCESS_KEY_ID=***
23
+ export AWS_SECRET_ACCESS_KEY=***
24
+
25
+ # Upgrade Cortex
26
+ ./cortex.sh upgrade
27
+
28
+ # Upgrade the CLI
29
+ ./cortex.sh install cli
30
+
31
+ # Confirm version
32
+ cortex --version
33
+ ```
Original file line number Diff line number Diff line change 22
22
* [ AWS Credentials] ( cluster/aws.md )
23
23
* [ Configuration] ( cluster/config.md )
24
24
* [ Security] ( cluster/security.md )
25
+ * [ Upgrade] ( cluster/upgrade.md )
25
26
* [ Uninstall] ( cluster/uninstall.md )
26
27
* [ Development] ( cluster/development.md )
27
28
You can’t perform that action at this time.
0 commit comments