Skip to content

Commit

Permalink
Update stable version to 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalbollu committed Mar 12, 2020
1 parent fca9dbb commit 0b897af
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
40 changes: 20 additions & 20 deletions docs/cluster-management/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,24 +47,24 @@ log_group: cortex
spot: false

# docker image paths
image_python_serve: cortexlabs/python-serve:0.14.0
image_python_serve_gpu: cortexlabs/python-serve-gpu:0.14.0
image_tf_serve: cortexlabs/tf-serve:0.14.0
image_tf_serve_gpu: cortexlabs/tf-serve-gpu:0.14.0
image_tf_api: cortexlabs/tf-api:0.14.0
image_onnx_serve: cortexlabs/onnx-serve:0.14.0
image_onnx_serve_gpu: cortexlabs/onnx-serve-gpu:0.14.0
image_operator: cortexlabs/operator:0.14.0
image_manager: cortexlabs/manager:0.14.0
image_downloader: cortexlabs/downloader:0.14.0
image_request_monitor: cortexlabs/request-monitor:0.14.0
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.14.0
image_metrics_server: cortexlabs/metrics-server:0.14.0
image_nvidia: cortexlabs/nvidia:0.14.0
image_fluentd: cortexlabs/fluentd:0.14.0
image_statsd: cortexlabs/statsd:0.14.0
image_istio_proxy: cortexlabs/istio-proxy:0.14.0
image_istio_pilot: cortexlabs/istio-pilot:0.14.0
image_istio_citadel: cortexlabs/istio-citadel:0.14.0
image_istio_galley: cortexlabs/istio-galley:0.14.0
image_python_serve: cortexlabs/python-serve:0.14.1
image_python_serve_gpu: cortexlabs/python-serve-gpu:0.14.1
image_tf_serve: cortexlabs/tf-serve:0.14.1
image_tf_serve_gpu: cortexlabs/tf-serve-gpu:0.14.1
image_tf_api: cortexlabs/tf-api:0.14.1
image_onnx_serve: cortexlabs/onnx-serve:0.14.1
image_onnx_serve_gpu: cortexlabs/onnx-serve-gpu:0.14.1
image_operator: cortexlabs/operator:0.14.1
image_manager: cortexlabs/manager:0.14.1
image_downloader: cortexlabs/downloader:0.14.1
image_request_monitor: cortexlabs/request-monitor:0.14.1
image_cluster_autoscaler: cortexlabs/cluster-autoscaler:0.14.1
image_metrics_server: cortexlabs/metrics-server:0.14.1
image_nvidia: cortexlabs/nvidia:0.14.1
image_fluentd: cortexlabs/fluentd:0.14.1
image_statsd: cortexlabs/statsd:0.14.1
image_istio_proxy: cortexlabs/istio-proxy:0.14.1
image_istio_pilot: cortexlabs/istio-pilot:0.14.1
image_istio_citadel: cortexlabs/istio-citadel:0.14.1
image_istio_galley: cortexlabs/istio-galley:0.14.1
```
12 changes: 6 additions & 6 deletions docs/dependency-management/system-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ mkdir my-api && cd my-api && touch Dockerfile
The Docker images used to deploy your models are listed below. Based on the Cortex Predictor and compute type specified in your API configuration, choose a Cortex image to use as the base for your custom Docker image.

<!-- CORTEX_VERSION_README x5 -->
* Python (CPU): cortexlabs/python-serve:0.14.0
* Python (GPU): cortexlabs/python-serve-gpu:0.14.0
* TensorFlow (CPU or GPU): cortexlabs/tf-api:0.14.0
* ONNX (CPU): cortexlabs/onnx-serve:0.14.0
* ONNX (GPU): cortexlabs/onnx-serve-gpu:0.14.0
* Python (CPU): cortexlabs/python-serve:0.14.1
* Python (GPU): cortexlabs/python-serve-gpu:0.14.1
* TensorFlow (CPU or GPU): cortexlabs/tf-api:0.14.1
* ONNX (CPU): cortexlabs/onnx-serve:0.14.1
* ONNX (GPU): cortexlabs/onnx-serve-gpu:0.14.1

Note that the Docker image version must match your cluster version displayed in `cortex version`.

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

FROM cortexlabs/python-serve:0.14.0
FROM cortexlabs/python-serve:0.14.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.14.0
CORTEX_VERSION_BRANCH_STABLE=0.14.1

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

0 comments on commit 0b897af

Please sign in to comment.