Skip to content

Commit

Permalink
fix: fix indientation in text-embeddings and whisper deployments (#1155)
Browse files Browse the repository at this point in the history
  • Loading branch information
YrrepNoj authored Sep 26, 2024
1 parent 8dd467a commit c47add1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/text-embeddings/chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ spec:
{{- $gpuLimit = $gpuLimit | float64 }}
{{- end }}
{{- if gt $gpuLimit 0.0 }}
runtimeClassName: nvidia
runtimeClassName: nvidia
{{- else if .Values.gpu.runtimeClassName }}
runtimeClassName: {{ .Values.gpu.runtimeClassName }}
runtimeClassName: {{ .Values.gpu.runtimeClassName }}
{{- end }}
# It's necessary to include the ###ZARF_DATA_INJECTION_MARKER### somewhere in the podspec, otherwise data injections will not occur.
initContainers:
Expand Down
4 changes: 2 additions & 2 deletions packages/whisper/chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ spec:
{{- $gpuLimit = $gpuLimit | float64 }}
{{- end }}
{{- if gt $gpuLimit 0.0 }}
runtimeClassName: nvidia
runtimeClassName: nvidia
{{- else if .Values.gpu.runtimeClassName }}
runtimeClassName: {{ .Values.gpu.runtimeClassName }}
runtimeClassName: {{ .Values.gpu.runtimeClassName }}
{{- end }}
# It's necessary to include the ###ZARF_DATA_INJECTION_MARKER### somewhere in the podspec, otherwise data injections will not occur.
initContainers:
Expand Down

0 comments on commit c47add1

Please sign in to comment.