Skip to content

Commit 615948c

Browse files
committed
refs #914: Fix identation for args and vars
1 parent 19541c2 commit 615948c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

deployment/chart/templates/deployment.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ spec:
5656
runAsUser: {{ .Values.securityContext.runAsUser }}
5757
{{- end }}
5858
env:
59+
{{- if .Values.extraVars }}
60+
{{ toYaml .Values.extraVars | indent 10 }}
61+
{{- end }}
5962
- name: PASSWORD
6063
valueFrom:
6164
secretKeyRef:
@@ -65,12 +68,9 @@ spec:
6568
name: {{ template "code-server.fullname" . }}
6669
{{- end }}
6770
key: password
68-
{{- if .Values.extraVars }}
69-
{{ toYaml .Values.extraVars | indent 12 }}
70-
{{- end }}
7171
{{- if .Values.extraArgs }}
7272
args:
73-
{{ toYaml .Values.extraArgs | indent 12 }}
73+
{{ toYaml .Values.extraArgs | indent 10 }}
7474
{{- end }}
7575
volumeMounts:
7676
- name: data

0 commit comments

Comments
 (0)