Skip to content

Commit

Permalink
Merge branch 'kserve:main' into Add-dockerfile-for-modelmesh-minio-ex…
Browse files Browse the repository at this point in the history
…amples-image
  • Loading branch information
tedhtchang authored Jan 11, 2023
2 parents 97ec0d6 + 0281170 commit 8fe5e4e
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 11 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Build and Push

on:
push:
branches: [main]
branches:
- 'main'
- 'release-*'
paths-ignore:
- 'docs/**'
- '**.md'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Lint

on:
pull_request:
branches: [main]
branches:
- 'main'
- 'release-*'
paths-ignore:
- '.github/**'
- '.tekton/**'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/run-fvt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: FVTs

on:
pull_request:
branches: [main]
branches:
- 'main'
- 'release-*'
paths:
- '**'
- '!.github/**'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Unit Test

on:
pull_request:
branches: [main]
branches:
- 'main'
- 'release-*'
paths-ignore:
- 'docs/**'
- '**.md'
Expand Down
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
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 8fe5e4e

Please sign in to comment.