Skip to content

Commit

Permalink
release: Update v0.12.0 version references
Browse files Browse the repository at this point in the history
Preparation for `v0.12.0` release.

Version references updated in the following files:

   - [x] `.github/workflows/fvt-base.yml`
   - [x] `config/default/config-defaults.yaml`
   - [x] `config/dependencies/fvt.yaml`
   - [x] `config/dependencies/quickstart.yaml`
   - [x] `config/manager/kustomization.yaml`
   - [x] `docs/component-versions.md`
   - [x] `docs/install/install-script.md`
   - [N/A] `docs/quickstart.md`
   - [x] `scripts/setup_user_namespaces.sh`

Signed-off-by: Edgar Hernández <[email protected]>
  • Loading branch information
israel-hdez committed Jun 21, 2024
1 parent 130a408 commit 1ce88dd
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/fvt-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,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:v0.12.0-rc0
docker pull kserve/modelmesh-minio-dev-examples:v0.12.0-rc0
docker pull kserve/modelmesh-minio-examples:v0.12.0-rc0
docker pull kserve/modelmesh-runtime-adapter:v0.12.0-rc0
docker pull kserve/rest-proxy:v0.12.0-rc0
docker pull kserve/modelmesh:v0.12.0
docker pull kserve/modelmesh-minio-dev-examples:v0.12.0
docker pull kserve/modelmesh-minio-examples:v0.12.0
docker pull kserve/modelmesh-runtime-adapter:v0.12.0
docker pull kserve/rest-proxy:v0.12.0
- name: Check installation
run: |
Expand Down
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: v0.12.0-rc0
tag: v0.12.0
modelMeshResources:
requests:
cpu: "300m"
Expand All @@ -29,7 +29,7 @@ restProxy:
port: 8008
image:
name: kserve/rest-proxy
tag: v0.12.0-rc0
tag: v0.12.0
resources:
requests:
cpu: "50m"
Expand All @@ -39,7 +39,7 @@ restProxy:
memory: "512Mi"
storageHelperImage:
name: kserve/modelmesh-runtime-adapter
tag: v0.12.0-rc0
tag: v0.12.0
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:v0.12.0-rc0
image: kserve/modelmesh-minio-dev-examples:v0.12.0
name: minio
---
apiVersion: v1
Expand Down Expand Up @@ -171,7 +171,7 @@ spec:
restartPolicy: OnFailure
containers:
- name: "copy-pod"
image: kserve/modelmesh-minio-examples:v0.12.0-rc0
image: kserve/modelmesh-minio-examples:v0.12.0
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:v0.12.0-rc0
image: kserve/modelmesh-minio-examples:v0.12.0
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: v0.12.0-rc0
newTag: v0.12.0
10 changes: 5 additions & 5 deletions docs/component-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

The following table shows the component versions for the latest ModelMesh Serving release (v0.12.0-rc0).

| Component | Description | Upstream Revision |
| ------------------------- | ------------------------------------------------------------------ | ----------------------------------------------------------------------------------- |
| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.12.0-rc0](https://github.com/kserve/modelmesh/tree/v0.12.0-rc0) |
| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.12.0-rc0](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.12.0-rc0) |
| REST Proxy | Supports inference requests using KServe V2 REST Predict Protocol | [v0.12.0-rc0](https://github.com/kserve/rest-proxy/tree/v0.12.0-rc0) |
| Component | Description | Upstream Revision |
| ------------------------- | ------------------------------------------------------------------ | --------------------------------------------------------------------------- |
| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.12.0](https://github.com/kserve/modelmesh/tree/v0.12.0) |
| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.12.0](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.12.0) |
| REST Proxy | Supports inference requests using KServe V2 REST Predict Protocol | [v0.12.0](https://github.com/kserve/rest-proxy/tree/v0.12.0) |
2 changes: 1 addition & 1 deletion docs/install/install-script.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ The installation will create a secret named `storage-config` if it does not alre
The `--namespace-scope-mode` will deploy `ServingRuntime`s confined to the same namespace, instead of the default cluster-scoped runtimes `ClusterServingRuntime`s. These serving runtimes are accessible to any user/namespace in the cluster.
You can optionally provide a custom ModelMesh Serving image with `--modelmesh-serving-image`. If not specified, it will pull the v0.12.0-rc0 image.
You can optionally provide a custom ModelMesh Serving image with `--modelmesh-serving-image`. If not specified, it will pull the v0.12.0 image.
The ModelMesh controller uses a webhook that requires a certificate. We suggest using [cert-manager](https://github.com/cert-manager/cert-manager) to provision the certificates for the webhook server. Other solutions should also work as long as they put the certificates in the desired location. You can follow [the cert-manager documentation](https://cert-manager.io/docs/installation/) to install it.
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.12.0-rc0" # The latest release is the default
modelmesh_release="v0.12.0" # 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

0 comments on commit 1ce88dd

Please sign in to comment.