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

fix sync issue for 0.12.0-rc0 #33

Merged
merged 1 commit into from
May 23, 2024
Merged
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 @@ -113,11 +113,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.11.1
docker pull kserve/modelmesh-minio-dev-examples:v0.11.1
docker pull kserve/modelmesh-minio-examples:v0.11.1
docker pull kserve/modelmesh-runtime-adapter:v0.11.1
docker pull kserve/rest-proxy:v0.11.1
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

- name: Check installation
run: |
Expand Down
8 changes: 4 additions & 4 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.11.1
tag: latest
modelMeshResources:
requests:
cpu: "300m"
Expand All @@ -29,7 +29,7 @@ restProxy:
port: 8008
image:
name: kserve/rest-proxy
tag: v0.11.1
tag: latest
resources:
requests:
cpu: "50m"
Expand All @@ -39,7 +39,7 @@ restProxy:
memory: "512Mi"
storageHelperImage:
name: kserve/modelmesh-runtime-adapter
tag: v0.11.1
tag: latest
command: ["/opt/app/puller"]
storageHelperResources:
requests:
Expand All @@ -55,4 +55,4 @@ builtInServerTypes:
- triton
- mlserver
- ovms
- torchserve
- torchserve
4 changes: 2 additions & 2 deletions config/dependencies/fvt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ spec:
value: AKIAIOSFODNN7EXAMPLE
- name: MINIO_SECRET_KEY
value: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
image: kserve/modelmesh-minio-dev-examples:v0.11.0
image: kserve/modelmesh-minio-dev-examples:latest
name: minio
---
apiVersion: v1
Expand Down Expand Up @@ -175,7 +175,7 @@ spec:
restartPolicy: OnFailure
containers:
- name: "copy-pod"
image: kserve/modelmesh-minio-dev-examples:v0.11.0
image: kserve/modelmesh-minio-dev-examples:latest
securityContext:
allowPrivilegeEscalation: false
command: ["/bin/sh", "-ex", "-c"]
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.11.1
image: kserve/modelmesh-minio-examples:latest
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.11.1
newTag: latest
Loading