Skip to content

Commit

Permalink
Update stable version to 0.42.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertLucian committed Sep 23, 2022
1 parent 51c18df commit dc5f732
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions docs/clients/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

<!-- CORTEX_VERSION_README x2 -->
```bash
# download CLI version 0.42.0 (Note the "v"):
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.0/get-cli.sh)"
# download CLI version 0.42.1 (Note the "v"):
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.1/get-cli.sh)"
```

By default, the Cortex CLI is installed at `/usr/local/bin/cortex`. To install the executable elsewhere, export the `CORTEX_INSTALL_PATH` environment variable to your desired location before running the command above.
Expand All @@ -19,10 +19,10 @@ pip install cortex
```

<!-- CORTEX_VERSION_README x2 -->
To install or upgrade to a specific version (e.g. v0.42.0):
To install or upgrade to a specific version (e.g. v0.42.1):

```bash
pip install cortex==0.42.0
pip install cortex==0.42.1
```

To upgrade to the latest version:
Expand Down
2 changes: 1 addition & 1 deletion docs/clusters/advanced/self-hosted-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Clone the Cortex repo using the release tag corresponding to your version (which
<!-- CORTEX_VERSION_README -->

```bash
export CORTEX_VERSION=0.42.0
export CORTEX_VERSION=0.42.1
git clone --depth 1 --branch v$CORTEX_VERSION https://github.com/cortexlabs/cortex.git
```

Expand Down
2 changes: 1 addition & 1 deletion docs/clusters/management/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<!-- CORTEX_VERSION_README -->
```bash
# install the cortex CLI
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.0/get-cli.sh)"
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.1/get-cli.sh)"

# create a cluster
cortex cluster up cluster.yaml
Expand Down
10 changes: 5 additions & 5 deletions docs/clusters/management/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ If you are spinning a up a new cluster with a different Cortex version, first in
<!-- CORTEX_VERSION_README x2 -->

```bash
# download the desired CLI version, replace 0.42.0 with the desired version (Note the "v"):
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.0/get-cli.sh)"
# download the desired CLI version, replace 0.42.1 with the desired version (Note the "v"):
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.1/get-cli.sh)"

# confirm Cortex CLI version
cortex version
Expand All @@ -74,11 +74,11 @@ You can use different Cortex CLIs to interact with the different versioned clust
<!-- CORTEX_VERSION_README x4 -->

```bash
# download the desired CLI version, replace 0.42.0 with the desired version (Note the "v"):
CORTEX_INSTALL_PATH=$(pwd)/cortex0.42.0 bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.0/get-cli.sh)"
# download the desired CLI version, replace 0.42.1 with the desired version (Note the "v"):
CORTEX_INSTALL_PATH=$(pwd)/cortex0.42.1 bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.1/get-cli.sh)"

# confirm cortex CLI version
./cortex0.42.0 version
./cortex0.42.1 version
```

### Deploy the APIs to your new cluster
Expand Down
2 changes: 1 addition & 1 deletion docs/clusters/observability/alerting.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ containers:
envFrom:
- secretRef:
name: grafana-smtp
image: quay.io/cortexlabs/grafana:0.42.0
image: quay.io/cortexlabs/grafana:0.42.1
imagePullPolicy: IfNotPresent
name: grafana
# ...
Expand Down
2 changes: 1 addition & 1 deletion docs/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- CORTEX_VERSION_README -->
```bash
# install the CLI
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.0/get-cli.sh)"
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.1/get-cli.sh)"

# create a cluster
cortex cluster up cluster.yaml
Expand Down

0 comments on commit dc5f732

Please sign in to comment.