Skip to content

Commit ee1ded9

Browse files
committed
fixed missing image version
1 parent 09e01a2 commit ee1ded9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

charts/azimuth-llm/templates/api/deployment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ spec:
2020
containers:
2121
- name: {{ .Release.Name }}-api
2222
{{- if eq (.Values.api.gpus | int) 0 }}
23-
image: "ghcr.io/stackhpc/vllm-cpu"
23+
image: "ghcr.io/stackhpc/vllm-cpu:{{ .Values.api.image.version }}"
2424
{{- else if .Values.api.intelXPUsEnabled }}
25-
image: "ghcr.io/stackhpc/vllm-xpu"
25+
image: "ghcr.io/stackhpc/vllm-xpu:{{ .Values.api.image.version }}"
2626
{{- else }}
27-
image: "vllm/vllm-openai"
27+
image: "vllm/vllm-openai:{{ .Values.api.image.version }}"
2828
{{- end }}
2929
ports:
3030
- name: api

0 commit comments

Comments
 (0)