Skip to content

Commit 629b577

Browse files
committed
Update stable version to 0.17.1
1 parent 5638d76 commit 629b577

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

docs/cluster-management/config.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,17 @@ The docker images used by the Cortex cluster can also be overridden, although th
8282
<!-- CORTEX_VERSION_BRANCH_STABLE -->
8383
```yaml
8484
# docker image paths
85-
image_operator: cortexlabs/operator:0.17.0
86-
image_manager: cortexlabs/manager:0.17.0
87-
image_downloader: cortexlabs/downloader:0.17.0
88-
image_request_monitor: cortexlabs/request-monitor:0.17.0
89-
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.17.0
90-
image_metrics_server: cortexlabs/metrics-server:0.17.0
91-
image_nvidia: cortexlabs/nvidia:0.17.0
92-
image_fluentd: cortexlabs/fluentd:0.17.0
93-
image_statsd: cortexlabs/statsd:0.17.0
94-
image_istio_proxy: cortexlabs/istio-proxy:0.17.0
95-
image_istio_pilot: cortexlabs/istio-pilot:0.17.0
96-
image_istio_citadel: cortexlabs/istio-citadel:0.17.0
97-
image_istio_galley: cortexlabs/istio-galley:0.17.0
85+
image_operator: cortexlabs/operator:0.17.1
86+
image_manager: cortexlabs/manager:0.17.1
87+
image_downloader: cortexlabs/downloader:0.17.1
88+
image_request_monitor: cortexlabs/request-monitor:0.17.1
89+
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.17.1
90+
image_metrics_server: cortexlabs/metrics-server:0.17.1
91+
image_nvidia: cortexlabs/nvidia:0.17.1
92+
image_fluentd: cortexlabs/fluentd:0.17.1
93+
image_statsd: cortexlabs/statsd:0.17.1
94+
image_istio_proxy: cortexlabs/istio-proxy:0.17.1
95+
image_istio_pilot: cortexlabs/istio-pilot:0.17.1
96+
image_istio_citadel: cortexlabs/istio-citadel:0.17.1
97+
image_istio_galley: cortexlabs/istio-galley:0.17.1
9898
```

docs/deployments/system-packages.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ mkdir my-api && cd my-api && touch Dockerfile
4747
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:
4848

4949
<!-- CORTEX_VERSION_BRANCH_STABLE x5 -->
50-
* Python Predictor (CPU): `cortexlabs/python-predictor-cpu-slim:0.17.0`
51-
* Python Predictor (GPU): `cortexlabs/python-predictor-gpu-slim:0.17.0`
52-
* TensorFlow Predictor (CPU and GPU): `cortexlabs/tensorflow-predictor-slim:0.17.0`
53-
* ONNX Predictor (CPU): `cortexlabs/onnx-predictor-cpu-slim:0.17.0`
54-
* ONNX Predictor (GPU): `cortexlabs/onnx-predictor-gpu-slim:0.17.0`
50+
* Python Predictor (CPU): `cortexlabs/python-predictor-cpu-slim:0.17.1`
51+
* Python Predictor (GPU): `cortexlabs/python-predictor-gpu-slim:0.17.1`
52+
* TensorFlow Predictor (CPU and GPU): `cortexlabs/tensorflow-predictor-slim:0.17.1`
53+
* ONNX Predictor (CPU): `cortexlabs/onnx-predictor-cpu-slim:0.17.1`
54+
* ONNX Predictor (GPU): `cortexlabs/onnx-predictor-gpu-slim:0.17.1`
5555

5656
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.
5757

@@ -61,7 +61,7 @@ The sample Dockerfile below inherits from Cortex's Python CPU serving image and
6161
```dockerfile
6262
# Dockerfile
6363

64-
FROM cortexlabs/python-predictor-cpu-slim:0.17.0
64+
FROM cortexlabs/python-predictor-cpu-slim:0.17.1
6565

6666
RUN apt-get update \
6767
&& apt-get install -y tree \

get-cli.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
set -e
1818

19-
CORTEX_VERSION_BRANCH_STABLE=0.17.0
19+
CORTEX_VERSION_BRANCH_STABLE=0.17.1
2020

2121
case "$OSTYPE" in
2222
darwin*) parsed_os="darwin" ;;

0 commit comments

Comments
 (0)