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 96bd4ae commit 0ef9bb0Copy full SHA for 0ef9bb0
charts/azimuth-llm/templates/api/deployment.yml
@@ -47,9 +47,9 @@ spec:
47
{{- if .Values.api.extraArgs -}}
48
{{- .Values.api.extraArgs | toYaml | nindent 10 }}
49
{{- end -}}
50
- {{- if gt .Values.api.gpus 1 }}
+ {{- if gt (.Values.api.gpus | int) 1 }}
51
- --tensor-parallel-size
52
- - {{ .Values.api.gpus }}
+ - {{ (.Values.api.gpus | int) }}
53
{{- end }}
54
{{- if .Values.huggingface.secretName -}}
55
envFrom:
0 commit comments