Skip to content

Commit

Permalink
release: Update image tags for v0.10.0 (#308)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kadner <ckadner@us.ibm.com>
  • Loading branch information
ckadner authored Jan 12, 2023
1 parent 758253a commit f56d8ed
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
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.10.0-rc0
tag: v0.10.0
modelMeshResources:
requests:
cpu: "300m"
Expand All @@ -29,7 +29,7 @@ restProxy:
port: 8008
image:
name: kserve/rest-proxy
tag: v0.1.4
tag: v0.10.0
resources:
requests:
cpu: "50m"
Expand All @@ -39,7 +39,7 @@ restProxy:
memory: "512Mi"
storageHelperImage:
name: kserve/modelmesh-runtime-adapter
tag: v0.10.0-rc0
tag: v0.10.0
command: ["/opt/app/puller"]
storageHelperResources:
requests:
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.10.0-rc0
newTag: v0.10.0
8 changes: 4 additions & 4 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.10.0-rc0).
The following table shows the component versions for the latest modelmesh-serving release (v0.10.0).
| Component | Description | Upstream Revision |
| - | - | - |
| 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) |
| ModelMesh | Serves as a general-purpose model serving management/routing layer | [v0.10.0](https://github.com/kserve/modelmesh/tree/v0.10.0) |
| ModelMesh Runtime Adapter | Contains the unified puller/runtime-adapter image | [v0.10.0](https://github.com/kserve/modelmesh-runtime-adapter/tree/v0.10.0) |
| REST Proxy | Supports inference requests using KServe V2 REST Predict Protocol | [v0.10.0](https://github.com/kserve/rest-proxy/tree/v0.10.0) |
2 changes: 1 addition & 1 deletion docs/install/install-script.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ A secret named `model-serving-etcd` will be created and passed to the controller

## Installation

Install the latest release of [modelmesh-serving](https://github.com/kserve/modelmesh-serving) by first cloning the corresponding release branch:
Install the latest release of [modelmesh-serving](https://github.com/kserve/modelmesh-serving/releases/latest) by first cloning the corresponding release branch:

```shell
RELEASE=release-0.10
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ require (
)

replace (
github.com/kserve/kserve => github.com/kserve/kserve v0.10.0-rc0
github.com/kserve/kserve => github.com/kserve/kserve v0.10.0-rc1

// Update prometheus client to avoid CVE-2022-21698
github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.12.1
Expand Down
6 changes: 3 additions & 3 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -495,15 +495,15 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxv
github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg=
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs=
github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/kserve/kserve v0.10.0-rc0 h1:Qzi4fXHW4TRHybXU3aT0n7Q8LgnYb8a+1xxsg0bcxDs=
github.com/kserve/kserve v0.10.0-rc0/go.mod h1:gTh3w7xOyCgYkqkhI8o8VQJtv1xMq6jhP7fseadKO2M=
github.com/kserve/kserve v0.10.0-rc1 h1:dhd+b0+p0+aissPVi0901Ymo2TuEvNokhlFCQpGa034=
github.com/kserve/kserve v0.10.0-rc1/go.mod h1:gRHczpy76DEpj4DbFUsJa+s5ABX7L6jmO7emZ7wvj8Q=
github.com/logrusorgru/aurora/v3 v3.0.0 h1:R6zcoZZbvVcGMvDCKo45A9U/lzYyzl5NfYIvznmDfE4=
github.com/logrusorgru/aurora/v3 v3.0.0/go.mod h1:vsR12bk5grlLvLXAYrBsb5Oc/N+LxAlxggSjiwMnCUc=
github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
Expand Down
4 changes: 2 additions & 2 deletions scripts/setup_user_namespaces.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ EOF

ctrl_ns="modelmesh-serving"
user_ns_array=()
modelmesh_release="v0.10.0-rc0" # The latest release is the default
modelmesh_release="v0.10.0" # 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
dev_mode=false # Set to true to use locally cloned files instead of from a release

while (($# > 0)); do
case "$1" in
Expand Down

0 comments on commit f56d8ed

Please sign in to comment.