File tree Expand file tree Collapse file tree 4 files changed +20
-10
lines changed
experimental/helm/charts/kserve-models-web-app Expand file tree Collapse file tree 4 files changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ description: A Helm chart for KServe Models Web App - Model serving management U
66
77version : 0.1.0
88
9- appVersion : v0.14 .0
9+ appVersion : v0.15 .0
1010
1111home : https://github.com/kserve/kserve
1212
Original file line number Diff line number Diff line change 2424 {{- else }}
2525 APP_DISABLE_AUTH : " True"
2626 {{- end }}
27+ GRAFANA_PREFIX : {{ .Values.app.config.grafanaPrefix | quote }}
28+ GRAFANA_CPU_MEMORY_DB : {{ .Values.app.config.grafanaCpuMemoryDb | quote }}
29+ GRAFANA_HTTP_REQUESTS_DB : {{ .Values.app.config.grafanaHttpRequestsDb | quote }}
2730 {{- with .Values.configMap.data }}
2831 {{- toYaml . | nindent 2 }}
2932 {{- end }}
Original file line number Diff line number Diff line change @@ -29,22 +29,23 @@ spec:
2929 {{- include "kserve-models-web-app.kustomizeLabels" . | nindent 8 }}
3030 {{- if .Values.kubeflow.enabled }}
3131 {{- include "kserve-models-web-app.kserveLabels" . | nindent 8 }}
32- sidecar.istio.io/inject : " true"
3332 {{- end }}
3433 {{- with .Values.deployment.podLabels }}
3534 {{- toYaml . | nindent 8 }}
3635 {{- end }}
3736 {{- with .Values.app.labels }}
3837 {{- toYaml . | nindent 8 }}
3938 {{- end }}
40- {{- with .Values.deployment.podAnnotations }}
4139 annotations :
40+ {{- if .Values.kubeflow.enabled }}
41+ sidecar.istio.io/inject : " true"
42+ {{- end }}
43+ {{- with .Values.deployment.podAnnotations }}
4244 {{- toYaml . | nindent 8 }}
43- {{- end }}
44- {{- with .Values.app.annotations }}
45- annotations :
45+ {{- end }}
46+ {{- with .Values.app.annotations }}
4647 {{- toYaml . | nindent 8 }}
47- {{- end }}
48+ {{- end }}
4849 spec :
4950 {{- with .Values.global.imagePullSecrets }}
5051 imagePullSecrets :
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ global:
1919 # -- Image registry for KServe Models Web App images
2020 imageRegistry : ghcr.io/kserve
2121 # -- Global image tag for KServe Models Web App
22- imageTag : v0.14 .0
22+ imageTag : 0.15 .0
2323 # -- Global image pull policy
2424 imagePullPolicy : Always
2525 # -- Global image pull secrets
3535 enabled : true
3636 # -- Number of replicas
3737 replicas : 1
38-
38+
3939 image :
4040 # -- Application image repository
4141 repository : models-web-app
4242 # -- Application image tag (overrides global.imageTag if set)
4343 tag : " "
4444 # -- Application image pull policy (overrides global.imagePullPolicy if set)
4545 pullPolicy : " "
46-
46+
4747 # -- Application configuration
4848 config :
4949 # -- Disable authentication for the web app
5252 useridHeader : " kubeflow-userid"
5353 # -- Application prefix for URL routing
5454 appPrefix : " /kserve-endpoints"
55+ # -- Grafana URL prefix
56+ grafanaPrefix : " /grafana"
57+ # -- Grafana CPU and memory database path
58+ grafanaCpuMemoryDb : " db/knative-serving-revision-cpu-and-memory-usage"
59+ # -- Grafana HTTP requests database path
60+ grafanaHttpRequestsDb : " db/knative-serving-revision-http-requests"
5561 # -- Additional environment variables
5662 env : []
5763
You can’t perform that action at this time.
0 commit comments