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 474f7b4 commit 336441eCopy full SHA for 336441e
charts/azimuth-llm/templates/api/deployment.yml
@@ -62,10 +62,12 @@ spec:
62
periodSeconds: 10
63
resources:
64
limits:
65
- {{- if .Values.api.intelXPUsEnabled }}
66
- gpu.intel.com/i915: {{ .Values.api.gpus | int }}
+ {{- if eq (.Values.api.gpus | int) 0 }}
+ image: "ghcr.io/stackhpc/vllm-cpu"
67
+ {{- else if .Values.api.intelXPUsEnabled }}
68
+ image: "ghcr.io/stackhpc/vllm-xpu"
69
{{- else }}
- nvidia.com/gpu: {{ .Values.api.gpus | int }}
70
+ image: "vllm/vllm-openai"
71
{{- end }}
72
volumes:
73
- name: data
0 commit comments