From 2dff001957ee40c8297b3e239689ca93ff2f7839 Mon Sep 17 00:00:00 2001 From: David Eliahu Date: Wed, 21 Jul 2021 15:22:55 -0700 Subject: [PATCH] Update stable version to 0.39.1 --- docs/clients/install.md | 8 +-- docs/clusters/advanced/self-hosted-images.md | 2 +- docs/clusters/management/create.md | 58 ++++++++++---------- docs/clusters/management/update.md | 10 ++-- docs/clusters/observability/alerting.md | 2 +- docs/start.md | 2 +- get-cli.sh | 2 +- 7 files changed, 42 insertions(+), 42 deletions(-) diff --git a/docs/clients/install.md b/docs/clients/install.md index ba1765bb07..88e2d9f2b1 100644 --- a/docs/clients/install.md +++ b/docs/clients/install.md @@ -4,8 +4,8 @@ ```bash -# download CLI version 0.39.0 (Note the "v"): -bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)" +# download CLI version 0.39.1 (Note the "v"): +bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.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. @@ -19,10 +19,10 @@ pip install cortex ``` -To install or upgrade to a specific version (e.g. v0.39.0): +To install or upgrade to a specific version (e.g. v0.39.1): ```bash -pip install cortex==0.39.0 +pip install cortex==0.39.1 ``` To upgrade to the latest version: diff --git a/docs/clusters/advanced/self-hosted-images.md b/docs/clusters/advanced/self-hosted-images.md index 6bcf08c8fd..23e60cf7ff 100644 --- a/docs/clusters/advanced/self-hosted-images.md +++ b/docs/clusters/advanced/self-hosted-images.md @@ -19,7 +19,7 @@ Clone the Cortex repo using the release tag corresponding to your version (which ```bash -export CORTEX_VERSION=0.39.0 +export CORTEX_VERSION=0.39.1 git clone --depth 1 --branch v$CORTEX_VERSION https://github.com/cortexlabs/cortex.git ``` diff --git a/docs/clusters/management/create.md b/docs/clusters/management/create.md index 3f93fcafd7..f56da754ce 100644 --- a/docs/clusters/management/create.md +++ b/docs/clusters/management/create.md @@ -12,7 +12,7 @@ ```bash # install the cortex CLI -bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)" +bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.1/get-cli.sh)" # create a cluster cortex cluster up cluster.yaml @@ -101,32 +101,32 @@ The docker images used by the cluster can also be overridden. They can be config ```yaml -image_manager: quay.io/cortexlabs/manager:0.39.0 -image_operator: quay.io/cortexlabs/operator:0.39.0 -image_controller_manager: quay.io/cortexlabs/controller-manager:0.39.0 -image_autoscaler: quay.io/cortexlabs/autoscaler:0.39.0 -image_proxy: quay.io/cortexlabs/proxy:0.39.0 -image_async_gateway: quay.io/cortexlabs/async-gateway:0.39.0 -image_activator: quay.io/cortexlabs/activator:0.39.0 -image_enqueuer: quay.io/cortexlabs/enqueuer:0.39.0 -image_dequeuer: quay.io/cortexlabs/dequeuer:0.39.0 -image_cluster_autoscaler: quay.io/cortexlabs/cluster-autoscaler:0.39.0 -image_metrics_server: quay.io/cortexlabs/metrics-server:0.39.0 -image_nvidia_device_plugin: quay.io/cortexlabs/nvidia-device-plugin:0.39.0 -image_neuron_device_plugin: quay.io/cortexlabs/neuron-device-plugin:0.39.0 -image_neuron_scheduler: quay.io/cortexlabs/neuron-scheduler:0.39.0 -image_fluent_bit: quay.io/cortexlabs/fluent-bit:0.39.0 -image_istio_proxy: quay.io/cortexlabs/istio-proxy:0.39.0 -image_istio_pilot: quay.io/cortexlabs/istio-pilot:0.39.0 -image_prometheus: quay.io/cortexlabs/prometheus:0.39.0 -image_prometheus_config_reloader: quay.io/cortexlabs/prometheus-config-reloader:0.39.0 -image_prometheus_operator: quay.io/cortexlabs/prometheus-operator:0.39.0 -image_prometheus_statsd_exporter: quay.io/cortexlabs/prometheus-statsd-exporter:0.39.0 -image_prometheus_dcgm_exporter: quay.io/cortexlabs/prometheus-dcgm-exporter:0.39.0 -image_prometheus_kube_state_metrics: quay.io/cortexlabs/prometheus-kube-state-metrics:0.39.0 -image_prometheus_node_exporter: quay.io/cortexlabs/prometheus-node-exporter:0.39.0 -image_kube_rbac_proxy: quay.io/cortexlabs/kube-rbac-proxy:0.39.0 -image_grafana: quay.io/cortexlabs/grafana:0.39.0 -image_event_exporter: quay.io/cortexlabs/event-exporter:0.39.0 -image_kubexit: quay.io/cortexlabs/kubexit:0.39.0 +image_manager: quay.io/cortexlabs/manager:0.39.1 +image_operator: quay.io/cortexlabs/operator:0.39.1 +image_controller_manager: quay.io/cortexlabs/controller-manager:0.39.1 +image_autoscaler: quay.io/cortexlabs/autoscaler:0.39.1 +image_proxy: quay.io/cortexlabs/proxy:0.39.1 +image_async_gateway: quay.io/cortexlabs/async-gateway:0.39.1 +image_activator: quay.io/cortexlabs/activator:0.39.1 +image_enqueuer: quay.io/cortexlabs/enqueuer:0.39.1 +image_dequeuer: quay.io/cortexlabs/dequeuer:0.39.1 +image_cluster_autoscaler: quay.io/cortexlabs/cluster-autoscaler:0.39.1 +image_metrics_server: quay.io/cortexlabs/metrics-server:0.39.1 +image_nvidia_device_plugin: quay.io/cortexlabs/nvidia-device-plugin:0.39.1 +image_neuron_device_plugin: quay.io/cortexlabs/neuron-device-plugin:0.39.1 +image_neuron_scheduler: quay.io/cortexlabs/neuron-scheduler:0.39.1 +image_fluent_bit: quay.io/cortexlabs/fluent-bit:0.39.1 +image_istio_proxy: quay.io/cortexlabs/istio-proxy:0.39.1 +image_istio_pilot: quay.io/cortexlabs/istio-pilot:0.39.1 +image_prometheus: quay.io/cortexlabs/prometheus:0.39.1 +image_prometheus_config_reloader: quay.io/cortexlabs/prometheus-config-reloader:0.39.1 +image_prometheus_operator: quay.io/cortexlabs/prometheus-operator:0.39.1 +image_prometheus_statsd_exporter: quay.io/cortexlabs/prometheus-statsd-exporter:0.39.1 +image_prometheus_dcgm_exporter: quay.io/cortexlabs/prometheus-dcgm-exporter:0.39.1 +image_prometheus_kube_state_metrics: quay.io/cortexlabs/prometheus-kube-state-metrics:0.39.1 +image_prometheus_node_exporter: quay.io/cortexlabs/prometheus-node-exporter:0.39.1 +image_kube_rbac_proxy: quay.io/cortexlabs/kube-rbac-proxy:0.39.1 +image_grafana: quay.io/cortexlabs/grafana:0.39.1 +image_event_exporter: quay.io/cortexlabs/event-exporter:0.39.1 +image_kubexit: quay.io/cortexlabs/kubexit:0.39.1 ``` diff --git a/docs/clusters/management/update.md b/docs/clusters/management/update.md index 31c952b5fd..d1e84b24aa 100644 --- a/docs/clusters/management/update.md +++ b/docs/clusters/management/update.md @@ -59,8 +59,8 @@ If you are spinning a up a new cluster with a different Cortex version, first in ```bash -# download the desired CLI version, replace 0.39.0 with the desired version (Note the "v"): -bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)" +# download the desired CLI version, replace 0.39.1 with the desired version (Note the "v"): +bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.1/get-cli.sh)" # confirm Cortex CLI version cortex version @@ -74,11 +74,11 @@ You can use different Cortex CLIs to interact with the different versioned clust ```bash -# download the desired CLI version, replace 0.39.0 with the desired version (Note the "v"): -CORTEX_INSTALL_PATH=$(pwd)/cortex0.39.0 bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)" +# download the desired CLI version, replace 0.39.1 with the desired version (Note the "v"): +CORTEX_INSTALL_PATH=$(pwd)/cortex0.39.1 bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.1/get-cli.sh)" # confirm cortex CLI version -./cortex0.39.0 version +./cortex0.39.1 version ``` ### Deploy the APIs to your new cluster diff --git a/docs/clusters/observability/alerting.md b/docs/clusters/observability/alerting.md index dd0fa90711..c067a869a1 100644 --- a/docs/clusters/observability/alerting.md +++ b/docs/clusters/observability/alerting.md @@ -155,7 +155,7 @@ containers: envFrom: - secretRef: name: grafana-smtp - image: quay.io/cortexlabs/grafana:0.39.0 + image: quay.io/cortexlabs/grafana:0.39.1 imagePullPolicy: IfNotPresent name: grafana # ... diff --git a/docs/start.md b/docs/start.md index b460aa0391..8645719363 100644 --- a/docs/start.md +++ b/docs/start.md @@ -5,7 +5,7 @@ ```bash # install the CLI -bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)" +bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.1/get-cli.sh)" # create a cluster cortex cluster up cluster.yaml diff --git a/get-cli.sh b/get-cli.sh index 8fdf5cdb7a..23a529837a 100755 --- a/get-cli.sh +++ b/get-cli.sh @@ -16,7 +16,7 @@ set -e -CORTEX_VERSION_BRANCH_STABLE=0.39.0 +CORTEX_VERSION_BRANCH_STABLE=0.39.1 CORTEX_INSTALL_PATH="${CORTEX_INSTALL_PATH:-/usr/local/bin/cortex}" # replace ~ with the home directory path