Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

update modelmesh manifests to use 0.11.0 #939

Merged
merged 1 commit into from
Sep 26, 2023
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
6 changes: 4 additions & 2 deletions model-mesh/OWNERS
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
approvers:
approvers:
- anishasthana
- danielezonca
- heyselbi
- israel-hdez
- Jooho
- vaibhavjainwiz
- VedantMahabaleshwarkar
- Xaenalt

reviewers:
- anishasthana
- danielezonca
- heyselbi
- israel-hdez
- Jooho
- vaibhavjainwiz
- VedantMahabaleshwarkar
- Xaenalt
12 changes: 6 additions & 6 deletions model-mesh/base/params.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
monitoring-namespace=opendatahub
odh-mm-rest-proxy=quay.io/opendatahub/rest-proxy:v0.10.0
odh-modelmesh-runtime-adapter=quay.io/opendatahub/modelmesh-runtime-adapter:v0.11.0-alpha
odh-modelmesh=quay.io/opendatahub/modelmesh:v0.11.0-alpha
odh-openvino=quay.io/opendatahub/openvino_model_server:2022.3-gpu
odh-modelmesh-controller=quay.io/opendatahub/modelmesh-controller:v0.11.0-alpha
odh-model-controller=quay.io/opendatahub/odh-model-controller:v0.11.0-alpha
odh-mm-rest-proxy=quay.io/opendatahub/rest-proxy:v0.11.0
odh-modelmesh-runtime-adapter=quay.io/opendatahub/modelmesh-runtime-adapter:v0.11.0
odh-modelmesh=quay.io/opendatahub/modelmesh:v0.11.0
odh-openvino=quay.io/opendatahub/openvino_model_server:2022.3-release
odh-modelmesh-controller=quay.io/opendatahub/modelmesh-controller:v0.11.0
odh-model-controller=quay.io/opendatahub/odh-model-controller:v0.11.0
2 changes: 1 addition & 1 deletion model-mesh/odh-model-controller/default/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
bases:
- ../rbac
- ../manager
- ../manager
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ spec:
- --leader-elect
- "--monitoring-namespace"
- "$(MONITORING_NS)"
#This is hardcoded to be false in the overlay to model-mesh.
# Once Kserve and Modelmesh CRD conflict is resolved and both components can be installed together,
# ODH Model Controller will not be deployed as a overlay anymore and will be deployed only as an independent component.
# When that happens, the "kserve-enabled" flag needs to be removed
- --kserve-enabled=false
#This is hardcoded to be false in the overlay to model-mesh.
# Once Kserve and Modelmesh CRD conflict is resolved and both components can be installed together,
# ODH Model Controller will not be deployed as a overlay anymore and will be deployed only as an independent component.
# When that happens, the "kserve-enabled" flag needs to be removed
- --kserve-enabled=false
image: $(odh-model-controller)
env:
- name: MONITORING_NS
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: kserve-prometheus-k8s
rules:
- apiGroups:
- ""
resources:
- services
- endpoints
- pods
verbs:
- get
- list
- watch
Loading