Skip to content

Commit

Permalink
Update stable version to 0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deliahu committed Jun 3, 2020
1 parent 5638d76 commit 629b577
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 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.17.0
image_manager: cortexlabs/manager:0.17.0
image_downloader: cortexlabs/downloader:0.17.0
image_request_monitor: cortexlabs/request-monitor:0.17.0
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.17.0
image_metrics_server: cortexlabs/metrics-server:0.17.0
image_nvidia: cortexlabs/nvidia:0.17.0
image_fluentd: cortexlabs/fluentd:0.17.0
image_statsd: cortexlabs/statsd:0.17.0
image_istio_proxy: cortexlabs/istio-proxy:0.17.0
image_istio_pilot: cortexlabs/istio-pilot:0.17.0
image_istio_citadel: cortexlabs/istio-citadel:0.17.0
image_istio_galley: cortexlabs/istio-galley:0.17.0
image_operator: cortexlabs/operator:0.17.1
image_manager: cortexlabs/manager:0.17.1
image_downloader: cortexlabs/downloader:0.17.1
image_request_monitor: cortexlabs/request-monitor:0.17.1
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.17.1
image_metrics_server: cortexlabs/metrics-server:0.17.1
image_nvidia: cortexlabs/nvidia:0.17.1
image_fluentd: cortexlabs/fluentd:0.17.1
image_statsd: cortexlabs/statsd:0.17.1
image_istio_proxy: cortexlabs/istio-proxy:0.17.1
image_istio_pilot: cortexlabs/istio-pilot:0.17.1
image_istio_citadel: cortexlabs/istio-citadel:0.17.1
image_istio_galley: cortexlabs/istio-galley:0.17.1
```
12 changes: 6 additions & 6 deletions docs/deployments/system-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ 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 x5 -->
* Python Predictor (CPU): `cortexlabs/python-predictor-cpu-slim:0.17.0`
* Python Predictor (GPU): `cortexlabs/python-predictor-gpu-slim:0.17.0`
* TensorFlow Predictor (CPU and GPU): `cortexlabs/tensorflow-predictor-slim:0.17.0`
* ONNX Predictor (CPU): `cortexlabs/onnx-predictor-cpu-slim:0.17.0`
* ONNX Predictor (GPU): `cortexlabs/onnx-predictor-gpu-slim:0.17.0`
* Python Predictor (CPU): `cortexlabs/python-predictor-cpu-slim:0.17.1`
* Python Predictor (GPU): `cortexlabs/python-predictor-gpu-slim:0.17.1`
* TensorFlow Predictor (CPU and GPU): `cortexlabs/tensorflow-predictor-slim:0.17.1`
* ONNX Predictor (CPU): `cortexlabs/onnx-predictor-cpu-slim:0.17.1`
* ONNX Predictor (GPU): `cortexlabs/onnx-predictor-gpu-slim:0.17.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 @@ -61,7 +61,7 @@ The sample Dockerfile below inherits from Cortex's Python CPU serving image and
```dockerfile
# Dockerfile

FROM cortexlabs/python-predictor-cpu-slim:0.17.0
FROM cortexlabs/python-predictor-cpu-slim:0.17.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.17.0
CORTEX_VERSION_BRANCH_STABLE=0.17.1

case "$OSTYPE" in
darwin*) parsed_os="darwin" ;;
Expand Down

0 comments on commit 629b577

Please sign in to comment.