-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathkserve-config-openshift.yaml
More file actions
61 lines (61 loc) · 1.57 KB
/
kserve-config-openshift.yaml
File metadata and controls
61 lines (61 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# KServe Configuration for Kuadrant Integration on OpenShift
---
apiVersion: v1
kind: ConfigMap
metadata:
name: inferenceservice-config
namespace: kserve
data:
storageInitializer: |-
{
"image" : "kserve/storage-initializer:v0.15.2",
"memoryRequest": "4Gi",
"memoryLimit": "8Gi",
"cpuRequest": "2",
"cpuLimit": "4",
"caBundleConfigMapName": "",
"caBundleVolumeMountPath": "/etc/ssl/custom-certs",
"enableDirectPvcVolumeMount": true,
"enableModelcar": true,
"cpuModelcar": "10m",
"memoryModelcar": "15Mi",
"uidModelcar": 1010
}
logger: |-
{
"image" : "kserve/agent:v0.15.2",
"memoryRequest": "100Mi",
"memoryLimit": "1Gi",
"cpuRequest": "100m",
"cpuLimit": "1",
"defaultUrl": "http://default-broker"
}
batcher: |-
{
"image" : "kserve/agent:v0.15.2",
"memoryRequest": "1Gi",
"memoryLimit": "1Gi",
"cpuRequest": "1",
"cpuLimit": "1",
"maxBatchSize": "32",
"maxLatency": "5000"
}
agent: |-
{
"image" : "kserve/agent:v0.15.2",
"memoryRequest": "100Mi",
"memoryLimit": "1Gi",
"cpuRequest": "100m",
"cpuLimit": "1"
}
ingress: |-
{
"enableGatewayApi": true,
"kserveIngressGateway": "openshift-ingress/openshift-ai-inference",
"ingressGateway": "istio-system/istio-ingressgateway",
"ingressDomain": "example.com"
}
deploy: |-
{
"defaultDeploymentMode": "RawDeployment"
}