Skip to content

Commit

Permalink
remove ""
Browse files Browse the repository at this point in the history
  • Loading branch information
lizhiboo committed Aug 29, 2024
1 parent 335aaeb commit c487bf3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions charts/tfjob/templates/tfjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ spec:
nvidia.com/gpu: {{ .Values.psGPU | quote }}
{{- end }}
{{- range $key, $value := .Values.devices }}
{{ $key }}: "{{ $value }}"
{{ $key }}: {{ $value }}
{{- end }}
{{- if .Values.psCPU }}
cpu: {{ .Values.psCPU | quote }}
Expand All @@ -305,7 +305,7 @@ spec:
nvidia.com/gpu: {{ .Values.psGPU | quote }}
{{- end }}
{{- range $key, $value := .Values.devices }}
{{ $key }}: "{{ $value }}"
{{ $key }}: {{ $value }}
{{- end }}
{{- if .Values.psCPULimit }}
cpu: {{ .Values.psCPULimit | quote }}
Expand Down Expand Up @@ -639,7 +639,7 @@ spec:
{{- end}}
{{- end}}
{{- range $key, $value := .Values.devices }}
{{ $key }}: "{{ $value }}"
{{ $key }}: {{ $value }}
{{- end }}
{{- if .Values.workerCPU }}
cpu: {{ .Values.workerCPU | quote }}
Expand All @@ -659,7 +659,7 @@ spec:
{{- end}}
{{- end}}
{{- range $key, $value := .Values.devices }}
{{ $key }}: "{{ $value }}"
{{ $key }}: {{ $value }}
{{- end }}
{{- if .Values.workerCPULimit }}
cpu: {{ .Values.workerCPULimit | quote }}
Expand Down Expand Up @@ -997,7 +997,7 @@ spec:
{{- end}}
{{- end}}
{{- range $key, $value := .Values.devices }}
{{ $key }}: "{{ $value }}"
{{ $key }}: {{ $value }}
{{- end }}
{{- if .Values.chiefCPU }}
cpu: {{ .Values.chiefCPU | quote }}
Expand All @@ -1017,7 +1017,7 @@ spec:
{{- end}}
{{- end}}
{{- range $key, $value := .Values.devices }}
{{ $key }}: "{{ $value }}"
{{ $key }}: {{ $value }}
{{- end }}
{{- if .Values.chiefCPULimit }}
cpu: {{ .Values.chiefCPULimit | quote }}
Expand Down Expand Up @@ -1310,7 +1310,7 @@ spec:
{{- end}}
{{- end}}
{{- range $key, $value := .Values.devices }}
{{ $key }}: "{{ $value }}"
{{ $key }}: {{ $value }}
{{- end }}
{{- if .Values.evaluatorCPU }}
cpu: {{ .Values.evaluatorCPU | quote }}
Expand All @@ -1327,7 +1327,7 @@ spec:
{{- end}}
{{- end}}
{{- range $key, $value := .Values.devices }}
{{ $key }}: "{{ $value }}"
{{ $key }}: {{ $value }}
{{- end }}
{{- if .Values.evaluatorCPULimit }}
cpu: {{ .Values.evaluatorCPULimit | quote }}
Expand Down

0 comments on commit c487bf3

Please sign in to comment.