Skip to content

Commit

Permalink
Update stable version to 0.22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deliahu committed Nov 19, 2020
1 parent fdac396 commit 679b41f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
26 changes: 13 additions & 13 deletions docs/cluster-management/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,17 @@ The docker images used by the Cortex cluster can also be overridden, although th
<!-- CORTEX_VERSION_BRANCH_STABLE -->
```yaml
# docker image paths
image_operator: cortexlabs/operator:0.22.0
image_manager: cortexlabs/manager:0.22.0
image_downloader: cortexlabs/downloader:0.22.0
image_request_monitor: cortexlabs/request-monitor:0.22.0
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.22.0
image_metrics_server: cortexlabs/metrics-server:0.22.0
image_inferentia: cortexlabs/inferentia:0.22.0
image_neuron_rtd: cortexlabs/neuron-rtd:0.22.0
image_nvidia: cortexlabs/nvidia:0.22.0
image_fluentd: cortexlabs/fluentd:0.22.0
image_statsd: cortexlabs/statsd:0.22.0
image_istio_proxy: cortexlabs/istio-proxy:0.22.0
image_istio_pilot: cortexlabs/istio-pilot:0.22.0
image_operator: cortexlabs/operator:0.22.1
image_manager: cortexlabs/manager:0.22.1
image_downloader: cortexlabs/downloader:0.22.1
image_request_monitor: cortexlabs/request-monitor:0.22.1
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.22.1
image_metrics_server: cortexlabs/metrics-server:0.22.1
image_inferentia: cortexlabs/inferentia:0.22.1
image_neuron_rtd: cortexlabs/neuron-rtd:0.22.1
image_nvidia: cortexlabs/nvidia:0.22.1
image_fluentd: cortexlabs/fluentd:0.22.1
image_statsd: cortexlabs/statsd:0.22.1
image_istio_proxy: cortexlabs/istio-proxy:0.22.1
image_istio_pilot: cortexlabs/istio-pilot:0.22.1
```
14 changes: 7 additions & 7 deletions docs/deployments/system-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ mkdir my-api && cd my-api && touch Dockerfile
Cortex's base Docker images are listed below. Depending on the Cortex Predictor and compute type specified in your API configuration, choose one of these images to use as the base for your Docker image:

<!-- CORTEX_VERSION_BRANCH_STABLE x6 -->
* Python Predictor (CPU): `cortexlabs/python-predictor-cpu-slim:0.22.0`
* Python Predictor (GPU): `cortexlabs/python-predictor-gpu-slim:0.22.0-cuda10.1` (also available in cuda10.0, cuda10.2, and cuda11.0)
* Python Predictor (Inferentia): `cortexlabs/python-predictor-inf-slim:0.22.0`
* TensorFlow Predictor (CPU, GPU, Inferentia): `cortexlabs/tensorflow-predictor-slim:0.22.0`
* ONNX Predictor (CPU): `cortexlabs/onnx-predictor-cpu-slim:0.22.0`
* ONNX Predictor (GPU): `cortexlabs/onnx-predictor-gpu-slim:0.22.0`
* Python Predictor (CPU): `cortexlabs/python-predictor-cpu-slim:0.22.1`
* Python Predictor (GPU): `cortexlabs/python-predictor-gpu-slim:0.22.1-cuda10.1` (also available in cuda10.0, cuda10.2, and cuda11.0)
* Python Predictor (Inferentia): `cortexlabs/python-predictor-inf-slim:0.22.1`
* TensorFlow Predictor (CPU, GPU, Inferentia): `cortexlabs/tensorflow-predictor-slim:0.22.1`
* ONNX Predictor (CPU): `cortexlabs/onnx-predictor-cpu-slim:0.22.1`
* ONNX Predictor (GPU): `cortexlabs/onnx-predictor-gpu-slim:0.22.1`

Note: the images listed above use the `-slim` suffix; Cortex's default API images are not `-slim`, since they have additional dependencies installed to cover common use cases. If you are building your own Docker image, starting with a `-slim` Predictor image will result in a smaller image size.

Expand All @@ -62,7 +62,7 @@ The sample Dockerfile below inherits from Cortex's Python CPU serving image, and
```dockerfile
# Dockerfile

FROM cortexlabs/python-predictor-cpu-slim:0.22.0
FROM cortexlabs/python-predictor-cpu-slim:0.22.1

RUN apt-get update \
&& apt-get install -y tree \
Expand Down
2 changes: 1 addition & 1 deletion get-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -e

CORTEX_VERSION_BRANCH_STABLE=0.22.0
CORTEX_VERSION_BRANCH_STABLE=0.22.1
CORTEX_INSTALL_PATH="${CORTEX_INSTALL_PATH:-/usr/local/bin/cortex}"

# replace ~ with the home directory path
Expand Down

0 comments on commit 679b41f

Please sign in to comment.