Skip to content

Commit 55f37a9

Browse files
authored
release: Update image tags for v0.11.0-rc0 (#390)
Signed-off-by: Rafael Vasquez <[email protected]>
1 parent 4a47d56 commit 55f37a9

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

config/default/config-defaults.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ podsPerRuntime: 2
1616
headlessService: true
1717
modelMeshImage:
1818
name: kserve/modelmesh
19-
tag: latest
19+
tag: v0.11.0-rc0
2020
modelMeshResources:
2121
requests:
2222
cpu: "300m"
@@ -29,7 +29,7 @@ restProxy:
2929
port: 8008
3030
image:
3131
name: kserve/rest-proxy
32-
tag: latest
32+
tag: v0.11.0-rc0
3333
resources:
3434
requests:
3535
cpu: "50m"
@@ -39,7 +39,7 @@ restProxy:
3939
memory: "512Mi"
4040
storageHelperImage:
4141
name: kserve/modelmesh-runtime-adapter
42-
tag: latest
42+
tag: v0.11.0-rc0
4343
command: ["/opt/app/puller"]
4444
storageHelperResources:
4545
requests:

config/dependencies/quickstart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ spec:
110110
- name: MINIO_SECRET_KEY
111111
value: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
112112
# image: quay.io/cloudservices/minio:latest
113-
image: kserve/modelmesh-minio-examples:latest
113+
image: kserve/modelmesh-minio-examples:v0.11.0-rc0
114114
name: minio
115115
---
116116
apiVersion: v1

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ images:
1818
- name: modelmesh-controller
1919
newName: kserve/modelmesh-controller
2020
## NOTE THIS SHOULD BE REPLACED WITH LATEST CONTROLLER IMAGE TAG
21-
newTag: latest
21+
newTag: v0.11.0-rc0

docs/component-versions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Component versions
22

3-
The following table shows the component versions for the latest modelmesh-serving release (v0.10.0).
3+
The following table shows the component versions for the latest modelmesh-serving release (v0.11.0-rc0).
44
| Component | Description | Upstream Revision |
55
| - | - | - |
6-
| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.10.0](https://github.com/kserve/modelmesh/tree/v0.10.0) |
7-
| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.10.0](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.10.0) |
8-
| REST Proxy | Supports inference requests using KServe V2 REST Predict Protocol | [v0.10.0](https://github.com/kserve/rest-proxy/tree/v0.10.0) |
6+
| 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) |
7+
| 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) |
8+
| 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) |

docs/install/install-script.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ A secret named `model-serving-etcd` will be created and passed to the controller
4343
Install the latest release of [modelmesh-serving](https://github.com/kserve/modelmesh-serving/releases/latest) by first cloning the corresponding release branch:
4444

4545
```shell
46-
RELEASE=release-0.10
46+
RELEASE=release-0.11
4747
git clone -b $RELEASE --depth 1 --single-branch https://github.com/kserve/modelmesh-serving.git
4848
cd modelmesh-serving
4949
```

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To quickly get started using ModelMesh Serving, here is a brief guide.
1313
### Get the latest release
1414

1515
```shell
16-
RELEASE=release-0.10
16+
RELEASE=release-0.11
1717
git clone -b $RELEASE --depth 1 --single-branch https://github.com/kserve/modelmesh-serving.git
1818
cd modelmesh-serving
1919
```

scripts/setup_user_namespaces.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ EOF
3131

3232
ctrl_ns="modelmesh-serving"
3333
user_ns_array=()
34-
modelmesh_release="v0.10.0" # The latest release is the default
34+
modelmesh_release="v0.11.0-rc0" # The latest release is the default
3535
create_storage_secret=false
3636
deploy_serving_runtimes=false
3737
dev_mode=false # Set to true to use locally cloned files instead of from a release

0 commit comments

Comments
 (0)