You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
image: {{ required "routing.proxy.image must be specified".proxy.image }}
158
+
image: {{ include "llm-d-modelservice.resolveImage" (dict "image" (required "routing.proxy.image must be specified".proxy.image) "Values".Values) | trim }}
@@ -465,7 +497,7 @@ context is a dict with helm root context plus:
465
497
*/}}
466
498
{{- define"llm-d-modelservice.container" -}}
467
499
- name: {{ default "vllm".container.name }}
468
-
image: {{ required "image of container is required".container.image }}
500
+
image: {{ include "llm-d-modelservice.resolveImage" (dict "image" (required "image of container is required".container.image) "Values".Values) | trim }}
Copy file name to clipboardExpand all lines: charts/llm-d-modelservice/values.schema.json
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1921,10 +1921,18 @@
1921
1921
"title": "fullnameOverride"
1922
1922
},
1923
1923
"global": {
1924
-
"description": "Global values are values that can be accessed from any chart or subchart by exactly the same name.",
1924
+
"additionalProperties": false,
1925
+
"description": "Global values shared with subcharts",
1926
+
"properties": {
1927
+
"imageRegistry": {
1928
+
"default": "",
1929
+
"description": "Override the registry for built-in chart workload images while preserving repository path and tag or digest Example: \"registry.example.com\" or \"registry.example.com/team-cache\"",
Copy file name to clipboardExpand all lines: charts/llm-d-modelservice/values.schema.tmpl.json
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -607,10 +607,18 @@
607
607
"title": "fullnameOverride"
608
608
},
609
609
"global": {
610
-
"description": "Global values are values that can be accessed from any chart or subchart by exactly the same name.",
610
+
"additionalProperties": false,
611
+
"description": "Global values shared with subcharts",
612
+
"properties": {
613
+
"imageRegistry": {
614
+
"default": "",
615
+
"description": "Override the registry for built-in chart workload images while preserving repository path and tag or digest Example: \"registry.example.com\" or \"registry.example.com/team-cache\"",
0 commit comments