diff --git a/docs/component-versions.md b/docs/component-versions.md index 5e59fb72..45f3b4da 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.9.0). +The following table shows the component versions for the latest modelmesh-serving release (v0.10.0-rc0). | Component | Description | Upstream Revision | | - | - | - | -| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.9.0](https://github.com/kserve/modelmesh/tree/v0.9.0) | -| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.9.0](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.9.0) | +| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.10.0-rc0](https://github.com/kserve/modelmesh/tree/v0.10.0-rc0) | +| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.10.0-rc0](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.10.0-rc0) | | REST Proxy | Supports inference requests using KServe V2 REST Predict Protocol | [v0.1.4](https://github.com/kserve/rest-proxy/tree/v0.1.4) | diff --git a/docs/install/install-script.md b/docs/install/install-script.md index 4164dc44..513d5daf 100644 --- a/docs/install/install-script.md +++ b/docs/install/install-script.md @@ -42,7 +42,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) by first cloning the corresponding release branch: ```shell -RELEASE=release-0.9 +RELEASE=release-0.10 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 ee357322..b3d3ac00 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -5,7 +5,7 @@ To quickly get started using ModelMesh Serving, here is a brief guide. ## Prerequisites - A Kubernetes cluster v 1.16+ with cluster administrative privileges -- [kubectl](https://kubernetes.io/docs/tasks/tools/#kubectl) and [kustomize](https://kubectl.docs.kubernetes.io/installation/kustomize/) (v4.0.0+) +- [kubectl](https://kubernetes.io/docs/tasks/tools/#kubectl) and [kustomize](https://kubectl.docs.kubernetes.io/installation/kustomize/) (v3.2.0+) - At least 4 vCPU and 8 GB memory. For more details, please see [here](install/README.md#deployed-components). ## 1. Install ModelMesh Serving @@ -13,7 +13,7 @@ To quickly get started using ModelMesh Serving, here is a brief guide. ### Get the latest release ```shell -RELEASE=release-0.9 +RELEASE=release-0.10 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 66823311..89e7aae3 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.9.0" # The latest release is the default +modelmesh_release="v0.10.0-rc0" # The latest release is the default create_storage_secret=false deploy_serving_runtimes=false dev_mode=false # When set to true, will use the locally cloned files instead of from a release