forked from kserve/kserve
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Open Data Hub operator v2 is going to be consuming Kustomize manifests from component repos, and `odh-manifests` repo is going to be archived. This is moving/copying artifacts from `odh-manifests` into an already existent odh overlay. With these changes, the overlay can be directly consumed by ODH-operator v2. Signed-off-by: Edgar Hernández <23639005+israel-hdez@users.noreply.github.com>
- Loading branch information
1 parent
8ecdb2d
commit caa980e
Showing
5 changed files
with
137 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: inferenceservice-config | ||
namespace: kserve | ||
data: | ||
explainers: "{}" | ||
storageInitializer: |- | ||
{ | ||
"image" : "$(kserve-storage-initializer)", | ||
"memoryRequest": "100Mi", | ||
"memoryLimit": "1Gi", | ||
"cpuRequest": "100m", | ||
"cpuLimit": "1", | ||
"enableDirectPvcVolumeMount": false | ||
} | ||
ingress: |- | ||
{ | ||
"ingressGateway" : "knative-serving/knative-ingress-gateway", | ||
"ingressService" : "istio-ingressgateway.istio-system.svc.cluster.local", | ||
"localGateway" : "knative-serving/knative-local-gateway", | ||
"localGatewayService" : "knative-local-gateway.istio-system.svc.cluster.local", | ||
"ingressDomain" : "example.com", | ||
"ingressClassName" : "istio", | ||
"domainTemplate": "{{ .Name }}-{{ .Namespace }}.{{ .IngressDomain }}", | ||
"urlScheme": "https", | ||
"disableIstioVirtualHost": true | ||
} | ||
logger: |- | ||
{ | ||
"image" : "$(kserve-agent)", | ||
"memoryRequest": "100Mi", | ||
"memoryLimit": "1Gi", | ||
"cpuRequest": "100m", | ||
"cpuLimit": "1", | ||
"defaultUrl": "http://default-broker" | ||
} | ||
batcher: |- | ||
{ | ||
"image" : "$(kserve-agent)", | ||
"memoryRequest": "1Gi", | ||
"memoryLimit": "1Gi", | ||
"cpuRequest": "1", | ||
"cpuLimit": "1" | ||
} | ||
agent: |- | ||
{ | ||
"image" : "$(kserve-agent)", | ||
"memoryRequest": "100Mi", | ||
"memoryLimit": "1Gi", | ||
"cpuRequest": "100m", | ||
"cpuLimit": "1" | ||
} | ||
router: |- | ||
{ | ||
"image" : "$(kserve-router)", | ||
"memoryRequest": "100Mi", | ||
"memoryLimit": "1Gi", | ||
"cpuRequest": "100m", | ||
"cpuLimit": "1" | ||
} | ||
deploy: |- | ||
{ | ||
"defaultDeploymentMode": "Serverless" | ||
} | ||
metricsAggregator: |- | ||
{ | ||
"enableMetricAggregation": "false", | ||
"enablePrometheusScraping" : "false" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
kserve-controller=quay.io/opendatahub/kserve-controller:latest | ||
kserve-agent=quay.io/opendatahub/kserve-agent:latest | ||
kserve-router=quay.io/opendatahub/kserve-router:latest | ||
kserve-storage-initializer=quay.io/opendatahub/kserve-storage-initializer:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
varReference: | ||
- path: spec/template/spec/containers/image | ||
kind: Deployment | ||
- path: data | ||
kind: ConfigMap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters