Skip to content

Commit 8981a58

Browse files
committed
Update stable version to 0.18.1
1 parent c37487c commit 8981a58

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

docs/cluster-management/config.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -85,19 +85,19 @@ The docker images used by the Cortex cluster can also be overridden, although th
8585
<!-- CORTEX_VERSION_BRANCH_STABLE -->
8686
```yaml
8787
# docker image paths
88-
image_operator: cortexlabs/operator:0.18.0
89-
image_manager: cortexlabs/manager:0.18.0
90-
image_downloader: cortexlabs/downloader:0.18.0
91-
image_request_monitor: cortexlabs/request-monitor:0.18.0
92-
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.18.0
93-
image_metrics_server: cortexlabs/metrics-server:0.18.0
94-
image_inferentia: cortexlabs/inferentia:0.18.0
95-
image_neuron_rtd: cortexlabs/neuron-rtd:0.18.0
96-
image_nvidia: cortexlabs/nvidia:0.18.0
97-
image_fluentd: cortexlabs/fluentd:0.18.0
98-
image_statsd: cortexlabs/statsd:0.18.0
99-
image_istio_proxy: cortexlabs/istio-proxy:0.18.0
100-
image_istio_pilot: cortexlabs/istio-pilot:0.18.0
101-
image_istio_citadel: cortexlabs/istio-citadel:0.18.0
102-
image_istio_galley: cortexlabs/istio-galley:0.18.0
88+
image_operator: cortexlabs/operator:0.18.1
89+
image_manager: cortexlabs/manager:0.18.1
90+
image_downloader: cortexlabs/downloader:0.18.1
91+
image_request_monitor: cortexlabs/request-monitor:0.18.1
92+
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.18.1
93+
image_metrics_server: cortexlabs/metrics-server:0.18.1
94+
image_inferentia: cortexlabs/inferentia:0.18.1
95+
image_neuron_rtd: cortexlabs/neuron-rtd:0.18.1
96+
image_nvidia: cortexlabs/nvidia:0.18.1
97+
image_fluentd: cortexlabs/fluentd:0.18.1
98+
image_statsd: cortexlabs/statsd:0.18.1
99+
image_istio_proxy: cortexlabs/istio-proxy:0.18.1
100+
image_istio_pilot: cortexlabs/istio-pilot:0.18.1
101+
image_istio_citadel: cortexlabs/istio-citadel:0.18.1
102+
image_istio_galley: cortexlabs/istio-galley:0.18.1
103103
```

docs/deployments/system-packages.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ 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 x6 -->
50-
* Python Predictor (CPU): `cortexlabs/python-predictor-cpu-slim:0.18.0`
51-
* Python Predictor (GPU): `cortexlabs/python-predictor-gpu-slim:0.18.0`
52-
* Python Predictor (Inferentia): `cortexlabs/python-predictor-inf-slim:0.18.0`
53-
* TensorFlow Predictor (CPU, GPU, Inferentia): `cortexlabs/tensorflow-predictor-slim:0.18.0`
54-
* ONNX Predictor (CPU): `cortexlabs/onnx-predictor-cpu-slim:0.18.0`
55-
* ONNX Predictor (GPU): `cortexlabs/onnx-predictor-gpu-slim:0.18.0`
50+
* Python Predictor (CPU): `cortexlabs/python-predictor-cpu-slim:0.18.1`
51+
* Python Predictor (GPU): `cortexlabs/python-predictor-gpu-slim:0.18.1`
52+
* Python Predictor (Inferentia): `cortexlabs/python-predictor-inf-slim:0.18.1`
53+
* TensorFlow Predictor (CPU, GPU, Inferentia): `cortexlabs/tensorflow-predictor-slim:0.18.1`
54+
* ONNX Predictor (CPU): `cortexlabs/onnx-predictor-cpu-slim:0.18.1`
55+
* ONNX Predictor (GPU): `cortexlabs/onnx-predictor-gpu-slim:0.18.1`
5656

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

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

65-
FROM cortexlabs/python-predictor-cpu-slim:0.18.0
65+
FROM cortexlabs/python-predictor-cpu-slim:0.18.1
6666

6767
RUN apt-get update \
6868
&& 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.18.0
19+
CORTEX_VERSION_BRANCH_STABLE=0.18.1
2020

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

0 commit comments

Comments
 (0)