We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09e01a2 commit ee1ded9Copy full SHA for ee1ded9
charts/azimuth-llm/templates/api/deployment.yml
@@ -20,11 +20,11 @@ spec:
20
containers:
21
- name: {{ .Release.Name }}-api
22
{{- if eq (.Values.api.gpus | int) 0 }}
23
- image: "ghcr.io/stackhpc/vllm-cpu"
+ image: "ghcr.io/stackhpc/vllm-cpu:{{ .Values.api.image.version }}"
24
{{- else if .Values.api.intelXPUsEnabled }}
25
- image: "ghcr.io/stackhpc/vllm-xpu"
+ image: "ghcr.io/stackhpc/vllm-xpu:{{ .Values.api.image.version }}"
26
{{- else }}
27
- image: "vllm/vllm-openai"
+ image: "vllm/vllm-openai:{{ .Values.api.image.version }}"
28
{{- end }}
29
ports:
30
- name: api
0 commit comments