Skip to content

Commit f0de149

Browse files
committed
Update version to 0.42.0
1 parent 8264ddb commit f0de149

File tree

24 files changed

+63
-63
lines changed

24 files changed

+63
-63
lines changed

build/amend-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
set -euo pipefail
1919

20-
CORTEX_VERSION=master
20+
CORTEX_VERSION=0.42.0
2121

2222
host_primary=$1
2323
host_backup=$2

build/build-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -euo pipefail
1919

2020
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)"
2121

22-
CORTEX_VERSION=master
22+
CORTEX_VERSION=0.42.0
2323

2424
host_primary=$1
2525
host_backup=$2

build/cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -euo pipefail
1919

2020
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)"
2121

22-
CORTEX_VERSION=master
22+
CORTEX_VERSION=0.42.0
2323

2424
arg1=${1:-""}
2525
upload="false"

build/push-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -euo pipefail
1919

2020
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)"
2121

22-
CORTEX_VERSION=master
22+
CORTEX_VERSION=0.42.0
2323

2424
host_primary=$1
2525
host_backup=$2

dev/export_images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ set -euo pipefail
2020
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)"
2121

2222
# CORTEX_VERSION
23-
cortex_version=master
23+
cortex_version=0.42.0
2424

2525
# user set variables
2626
ecr_region=$1

dev/registry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
CORTEX_VERSION=master
17+
CORTEX_VERSION=0.42.0
1818

1919
set -eo pipefail
2020

docs/clients/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
<!-- CORTEX_VERSION_README x2 -->
66
```bash
7-
# download CLI version 0.41.0 (Note the "v"):
8-
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.41.0/get-cli.sh)"
7+
# download CLI version 0.42.0 (Note the "v"):
8+
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.0/get-cli.sh)"
99
```
1010

1111
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.
@@ -19,10 +19,10 @@ pip install cortex
1919
```
2020

2121
<!-- CORTEX_VERSION_README x2 -->
22-
To install or upgrade to a specific version (e.g. v0.41.0):
22+
To install or upgrade to a specific version (e.g. v0.42.0):
2323

2424
```bash
25-
pip install cortex==0.41.0
25+
pip install cortex==0.42.0
2626
```
2727

2828
To upgrade to the latest version:

docs/clients/python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Deploy or update an API.
8686

8787
**Arguments**:
8888

89-
- `api_spec` - A dictionary defining a single Cortex API. See https://docs.cortex.dev/v/master/ for schema.
89+
- `api_spec` - A dictionary defining a single Cortex API. See https://docs.cortex.dev/v/0.42/ for schema.
9090
- `force` - Override any in-progress api updates.
9191
- `wait` - Block until the API is ready.
9292

@@ -107,7 +107,7 @@ Deploy or update APIs specified in a configuration file.
107107

108108
**Arguments**:
109109

110-
- `config_file` - Local path to a yaml file defining Cortex API(s). See https://docs.cortex.dev/v/master/ for schema.
110+
- `config_file` - Local path to a yaml file defining Cortex API(s). See https://docs.cortex.dev/v/0.42/ for schema.
111111
- `force` - Override any in-progress api updates.
112112
- `wait` - Block until the API is ready.
113113

docs/clusters/advanced/self-hosted-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Clone the Cortex repo using the release tag corresponding to your version (which
1919
<!-- CORTEX_VERSION_README -->
2020

2121
```bash
22-
export CORTEX_VERSION=0.41.0
22+
export CORTEX_VERSION=0.42.0
2323
git clone --depth 1 --branch v$CORTEX_VERSION https://github.com/cortexlabs/cortex.git
2424
```
2525

docs/clusters/management/create.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- CORTEX_VERSION_README -->
1313
```bash
1414
# install the cortex CLI
15-
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.41.0/get-cli.sh)"
15+
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.42.0/get-cli.sh)"
1616

1717
# create a cluster
1818
cortex cluster up cluster.yaml
@@ -104,32 +104,32 @@ The docker images used by the cluster can also be overridden. They can be config
104104
105105
<!-- CORTEX_VERSION_BRANCH_STABLE -->
106106
```yaml
107-
image_manager: quay.io/cortexlabs/manager:master
108-
image_operator: quay.io/cortexlabs/operator:master
109-
image_controller_manager: quay.io/cortexlabs/controller-manager:master
110-
image_autoscaler: quay.io/cortexlabs/autoscaler:master
111-
image_proxy: quay.io/cortexlabs/proxy:master
112-
image_async_gateway: quay.io/cortexlabs/async-gateway:master
113-
image_activator: quay.io/cortexlabs/activator:master
114-
image_enqueuer: quay.io/cortexlabs/enqueuer:master
115-
image_dequeuer: quay.io/cortexlabs/dequeuer:master
116-
image_cluster_autoscaler: quay.io/cortexlabs/cluster-autoscaler:master
117-
image_metrics_server: quay.io/cortexlabs/metrics-server:master
118-
image_nvidia_device_plugin: quay.io/cortexlabs/nvidia-device-plugin:master
119-
image_neuron_device_plugin: quay.io/cortexlabs/neuron-device-plugin:master
120-
image_neuron_scheduler: quay.io/cortexlabs/neuron-scheduler:master
121-
image_fluent_bit: quay.io/cortexlabs/fluent-bit:master
122-
image_istio_proxy: quay.io/cortexlabs/istio-proxy:master
123-
image_istio_pilot: quay.io/cortexlabs/istio-pilot:master
124-
image_prometheus: quay.io/cortexlabs/prometheus:master
125-
image_prometheus_config_reloader: quay.io/cortexlabs/prometheus-config-reloader:master
126-
image_prometheus_operator: quay.io/cortexlabs/prometheus-operator:master
127-
image_prometheus_statsd_exporter: quay.io/cortexlabs/prometheus-statsd-exporter:master
128-
image_prometheus_dcgm_exporter: quay.io/cortexlabs/prometheus-dcgm-exporter:master
129-
image_prometheus_kube_state_metrics: quay.io/cortexlabs/prometheus-kube-state-metrics:master
130-
image_prometheus_node_exporter: quay.io/cortexlabs/prometheus-node-exporter:master
131-
image_kube_rbac_proxy: quay.io/cortexlabs/kube-rbac-proxy:master
132-
image_grafana: quay.io/cortexlabs/grafana:master
133-
image_event_exporter: quay.io/cortexlabs/event-exporter:master
134-
image_kubexit: quay.io/cortexlabs/kubexit:master
107+
image_manager: quay.io/cortexlabs/manager:0.42.0
108+
image_operator: quay.io/cortexlabs/operator:0.42.0
109+
image_controller_manager: quay.io/cortexlabs/controller-manager:0.42.0
110+
image_autoscaler: quay.io/cortexlabs/autoscaler:0.42.0
111+
image_proxy: quay.io/cortexlabs/proxy:0.42.0
112+
image_async_gateway: quay.io/cortexlabs/async-gateway:0.42.0
113+
image_activator: quay.io/cortexlabs/activator:0.42.0
114+
image_enqueuer: quay.io/cortexlabs/enqueuer:0.42.0
115+
image_dequeuer: quay.io/cortexlabs/dequeuer:0.42.0
116+
image_cluster_autoscaler: quay.io/cortexlabs/cluster-autoscaler:0.42.0
117+
image_metrics_server: quay.io/cortexlabs/metrics-server:0.42.0
118+
image_nvidia_device_plugin: quay.io/cortexlabs/nvidia-device-plugin:0.42.0
119+
image_neuron_device_plugin: quay.io/cortexlabs/neuron-device-plugin:0.42.0
120+
image_neuron_scheduler: quay.io/cortexlabs/neuron-scheduler:0.42.0
121+
image_fluent_bit: quay.io/cortexlabs/fluent-bit:0.42.0
122+
image_istio_proxy: quay.io/cortexlabs/istio-proxy:0.42.0
123+
image_istio_pilot: quay.io/cortexlabs/istio-pilot:0.42.0
124+
image_prometheus: quay.io/cortexlabs/prometheus:0.42.0
125+
image_prometheus_config_reloader: quay.io/cortexlabs/prometheus-config-reloader:0.42.0
126+
image_prometheus_operator: quay.io/cortexlabs/prometheus-operator:0.42.0
127+
image_prometheus_statsd_exporter: quay.io/cortexlabs/prometheus-statsd-exporter:0.42.0
128+
image_prometheus_dcgm_exporter: quay.io/cortexlabs/prometheus-dcgm-exporter:0.42.0
129+
image_prometheus_kube_state_metrics: quay.io/cortexlabs/prometheus-kube-state-metrics:0.42.0
130+
image_prometheus_node_exporter: quay.io/cortexlabs/prometheus-node-exporter:0.42.0
131+
image_kube_rbac_proxy: quay.io/cortexlabs/kube-rbac-proxy:0.42.0
132+
image_grafana: quay.io/cortexlabs/grafana:0.42.0
133+
image_event_exporter: quay.io/cortexlabs/event-exporter:0.42.0
134+
image_kubexit: quay.io/cortexlabs/kubexit:0.42.0
135135
```

0 commit comments

Comments
 (0)