From 55f37a9b5b7b3eec7f31c7180761439787bef21a Mon Sep 17 00:00:00 2001 From: Rafael Vasquez Date: Fri, 2 Jun 2023 16:45:33 -0400 Subject: [PATCH] release: Update image tags for v0.11.0-rc0 (#390) Signed-off-by: Rafael Vasquez --- config/default/config-defaults.yaml | 6 +++--- config/dependencies/quickstart.yaml | 2 +- config/manager/kustomization.yaml | 2 +- docs/component-versions.md | 8 ++++---- docs/install/install-script.md | 2 +- docs/quickstart.md | 2 +- scripts/setup_user_namespaces.sh | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/config/default/config-defaults.yaml b/config/default/config-defaults.yaml index 4a4c7e42..fcedd8f9 100644 --- a/config/default/config-defaults.yaml +++ b/config/default/config-defaults.yaml @@ -16,7 +16,7 @@ podsPerRuntime: 2 headlessService: true modelMeshImage: name: kserve/modelmesh - tag: latest + tag: v0.11.0-rc0 modelMeshResources: requests: cpu: "300m" @@ -29,7 +29,7 @@ restProxy: port: 8008 image: name: kserve/rest-proxy - tag: latest + tag: v0.11.0-rc0 resources: requests: cpu: "50m" @@ -39,7 +39,7 @@ restProxy: memory: "512Mi" storageHelperImage: name: kserve/modelmesh-runtime-adapter - tag: latest + tag: v0.11.0-rc0 command: ["/opt/app/puller"] storageHelperResources: requests: diff --git a/config/dependencies/quickstart.yaml b/config/dependencies/quickstart.yaml index e04bfeae..b976d1aa 100644 --- a/config/dependencies/quickstart.yaml +++ b/config/dependencies/quickstart.yaml @@ -110,7 +110,7 @@ spec: - name: MINIO_SECRET_KEY value: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY # image: quay.io/cloudservices/minio:latest - image: kserve/modelmesh-minio-examples:latest + image: kserve/modelmesh-minio-examples:v0.11.0-rc0 name: minio --- apiVersion: v1 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 55e768ba..a3f93dff 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -18,4 +18,4 @@ images: - name: modelmesh-controller newName: kserve/modelmesh-controller ## NOTE THIS SHOULD BE REPLACED WITH LATEST CONTROLLER IMAGE TAG - newTag: latest + newTag: v0.11.0-rc0 diff --git a/docs/component-versions.md b/docs/component-versions.md index 4dae1a25..ad4541ab 100644 --- a/docs/component-versions.md +++ b/docs/component-versions.md @@ -1,8 +1,8 @@ # Component versions -The following table shows the component versions for the latest modelmesh-serving release (v0.10.0). +The following table shows the component versions for the latest modelmesh-serving release (v0.11.0-rc0). | Component | Description | Upstream Revision | | - | - | - | -| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.10.0](https://github.com/kserve/modelmesh/tree/v0.10.0) | -| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.10.0](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.10.0) | -| REST Proxy | Supports inference requests using KServe V2 REST Predict Protocol | [v0.10.0](https://github.com/kserve/rest-proxy/tree/v0.10.0) | +| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.11.0-rc0](https://github.com/kserve/modelmesh/tree/v0.11.0-rc0) | +| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.11.0-rc0](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.11.0-rc0) | +| REST Proxy | Supports inference requests using KServe V2 REST Predict Protocol | [v0.11.0-rc0](https://github.com/kserve/rest-proxy/tree/v0.11.0-rc0) | diff --git a/docs/install/install-script.md b/docs/install/install-script.md index 1b525c3b..72f2a480 100644 --- a/docs/install/install-script.md +++ b/docs/install/install-script.md @@ -43,7 +43,7 @@ A secret named `model-serving-etcd` will be created and passed to the controller Install the latest release of [modelmesh-serving](https://github.com/kserve/modelmesh-serving/releases/latest) by first cloning the corresponding release branch: ```shell -RELEASE=release-0.10 +RELEASE=release-0.11 git clone -b $RELEASE --depth 1 --single-branch https://github.com/kserve/modelmesh-serving.git cd modelmesh-serving ``` diff --git a/docs/quickstart.md b/docs/quickstart.md index 4dc549a9..153e7d2d 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -13,7 +13,7 @@ To quickly get started using ModelMesh Serving, here is a brief guide. ### Get the latest release ```shell -RELEASE=release-0.10 +RELEASE=release-0.11 git clone -b $RELEASE --depth 1 --single-branch https://github.com/kserve/modelmesh-serving.git cd modelmesh-serving ``` diff --git a/scripts/setup_user_namespaces.sh b/scripts/setup_user_namespaces.sh index a038e718..2a8471c0 100755 --- a/scripts/setup_user_namespaces.sh +++ b/scripts/setup_user_namespaces.sh @@ -31,7 +31,7 @@ EOF ctrl_ns="modelmesh-serving" user_ns_array=() -modelmesh_release="v0.10.0" # The latest release is the default +modelmesh_release="v0.11.0-rc0" # The latest release is the default create_storage_secret=false deploy_serving_runtimes=false dev_mode=false # Set to true to use locally cloned files instead of from a release