mirror of https://git.tuxpa.in/a/code-server.git
refs #914: Fix identation for args and vars
This commit is contained in:
parent
19541c27ff
commit
615948c73f
|
@ -56,6 +56,9 @@ spec:
|
||||||
runAsUser: {{ .Values.securityContext.runAsUser }}
|
runAsUser: {{ .Values.securityContext.runAsUser }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
env:
|
env:
|
||||||
|
{{- if .Values.extraVars }}
|
||||||
|
{{ toYaml .Values.extraVars | indent 10 }}
|
||||||
|
{{- end }}
|
||||||
- name: PASSWORD
|
- name: PASSWORD
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
|
@ -65,12 +68,9 @@ spec:
|
||||||
name: {{ template "code-server.fullname" . }}
|
name: {{ template "code-server.fullname" . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
key: password
|
key: password
|
||||||
{{- if .Values.extraVars }}
|
|
||||||
{{ toYaml .Values.extraVars | indent 12 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.extraArgs }}
|
{{- if .Values.extraArgs }}
|
||||||
args:
|
args:
|
||||||
{{ toYaml .Values.extraArgs | indent 12 }}
|
{{ toYaml .Values.extraArgs | indent 10 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
|
|
Loading…
Reference in New Issue