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

Invalid -- Please ignore #474

Closed
wants to merge 4 commits into from
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/fvt-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ jobs:
docker pull seldonio/mlserver:1.3.2
docker pull openvino/model_server:2022.2
# docker pull pytorch/torchserve:0.7.1-cpu
docker pull kserve/modelmesh:latest
docker pull kserve/modelmesh-minio-dev-examples:latest
docker pull kserve/modelmesh-minio-examples:latest
docker pull kserve/modelmesh-runtime-adapter:latest
docker pull kserve/rest-proxy:latest
docker pull kserve/modelmesh:v0.11.2
docker pull kserve/modelmesh-minio-dev-examples:v0.11.2
docker pull kserve/modelmesh-minio-examples:v0.11.2
docker pull kserve/modelmesh-runtime-adapter:v0.11.2
docker pull kserve/rest-proxy:v0.11.2

- name: Check installation
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ bin
devbuild
.develop_image_name
.dev/
.pre-commit.log
6 changes: 3 additions & 3 deletions config/default/config-defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ podsPerRuntime: 2
headlessService: true
modelMeshImage:
name: kserve/modelmesh
tag: latest
tag: v0.11.2
modelMeshResources:
requests:
cpu: "300m"
Expand All @@ -29,7 +29,7 @@ restProxy:
port: 8008
image:
name: kserve/rest-proxy
tag: latest
tag: v0.11.2
resources:
requests:
cpu: "50m"
Expand All @@ -39,7 +39,7 @@ restProxy:
memory: "512Mi"
storageHelperImage:
name: kserve/modelmesh-runtime-adapter
tag: latest
tag: v0.11.2
command: ["/opt/app/puller"]
storageHelperResources:
requests:
Expand Down
4 changes: 2 additions & 2 deletions config/dependencies/fvt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ spec:
value: AKIAIOSFODNN7EXAMPLE
- name: MINIO_SECRET_KEY
value: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
image: kserve/modelmesh-minio-dev-examples:latest
image: kserve/modelmesh-minio-dev-examples:v0.11.2
name: minio
---
apiVersion: v1
Expand Down Expand Up @@ -171,7 +171,7 @@ spec:
restartPolicy: OnFailure
containers:
- name: "copy-pod"
image: kserve/modelmesh-minio-examples:latest
image: kserve/modelmesh-minio-examples:v0.11.2
securityContext:
runAsUser: 0
allowPrivilegeEscalation: false
Expand Down
2 changes: 1 addition & 1 deletion config/dependencies/quickstart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
name: minio
---
apiVersion: v1
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
13 changes: 7 additions & 6 deletions docs/component-versions.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Component versions

The following table shows the component versions for the latest modelmesh-serving release (v0.11.0).
| Component | Description | Upstream Revision |
| - | - | - |
| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.11.0](https://github.com/kserve/modelmesh/tree/v0.11.0) |
| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.11.0](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.11.0) |
| REST Proxy | Supports inference requests using KServe V2 REST Predict Protocol | [v0.11.0](https://github.com/kserve/rest-proxy/tree/v0.11.0) |
The following table shows the component versions for the latest ModelMesh Serving release (v0.11.2).

| Component | Description | Upstream Revision |
| ------------------------- | ------------------------------------------------------------------ | --------------------------------------------------------------------------- |
| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.11.2](https://github.com/kserve/modelmesh/tree/v0.11.2) |
| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.11.2](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.11.2) |
| REST Proxy | Supports inference requests using KServe V2 REST Predict Protocol | [v0.11.2](https://github.com/kserve/rest-proxy/tree/v0.11.2) |
9 changes: 1 addition & 8 deletions docs/install/install-script.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,10 @@ A secret named `model-serving-etcd` will be created and passed to the controller

## Installation

<!-- Remove the following note on the `release-*` branch -->

To install the most recent _stable release_ of [modelmesh-serving](https://github.com/kserve/modelmesh-serving/releases/latest)
follow the [Installation instructions](https://github.com/kserve/modelmesh-serving/blob/release-0.11/docs/install/install-script.md) for version `v0.11.0`.

Start by cloning the [modelmesh-serving](https://github.com/kserve/modelmesh-serving.git) repository:

<!-- Replace with RELEASE="release-0.11" on the `release-*` branch -->

```shell
RELEASE="main"
RELEASE="release-0.11.2"
git clone -b $RELEASE --depth 1 --single-branch https://github.com/kserve/modelmesh-serving.git
cd modelmesh-serving
```
Expand Down
8 changes: 1 addition & 7 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

To quickly get started using ModelMesh Serving, here is a brief guide.

<!-- Remove the following note on the `release-*` branch -->

> **Note**: This document describes how to install the _latest unreleased_ version of ModelMesh for developers and early adopters. To install the most recent _stable release_, please follow the [Quick Start Guide for version 0.11](https://github.com/kserve/modelmesh-serving/blob/release-0.11/docs/quickstart.md).

## Prerequisites

- A Kubernetes cluster v1.23+ with cluster administrative privileges
Expand All @@ -16,10 +12,8 @@ To quickly get started using ModelMesh Serving, here is a brief guide.

### Clone the ModelMesh repository

<!-- Replace with RELEASE="release-0.11" on the `release-*` branch -->

```shell
RELEASE="main"
RELEASE="release-0.11.2"
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.11.0" # The latest release is the default
modelmesh_release="v0.11.2" # 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
Expand Down