From 0b897af63ae97cb803e58057a7030bde0b55658b Mon Sep 17 00:00:00 2001 From: vishal Date: Thu, 12 Mar 2020 16:59:37 -0400 Subject: [PATCH] Update stable version to 0.14.1 --- docs/cluster-management/config.md | 40 +++++++++---------- docs/dependency-management/system-packages.md | 12 +++--- get-cli.sh | 2 +- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/docs/cluster-management/config.md b/docs/cluster-management/config.md index 45e9f1515a..648f4af0f5 100644 --- a/docs/cluster-management/config.md +++ b/docs/cluster-management/config.md @@ -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 ``` diff --git a/docs/dependency-management/system-packages.md b/docs/dependency-management/system-packages.md index 50c37f2435..7e0285b88b 100644 --- a/docs/dependency-management/system-packages.md +++ b/docs/dependency-management/system-packages.md @@ -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. -* 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`. @@ -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 \ diff --git a/get-cli.sh b/get-cli.sh index a65971acec..f1b94dfdec 100755 --- a/get-cli.sh +++ b/get-cli.sh @@ -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" ;;