Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs with version v0.10.0-rc0 #301

Merged
merged 1 commit into from
Jan 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/component-versions.md
Original file line number Diff line number Diff line change
@@ -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) |
2 changes: 1 addition & 1 deletion docs/install/install-script.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ 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

### 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
```
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup_user_namespaces.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down