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 19541c2 commit 615948cCopy full SHA for 615948c
deployment/chart/templates/deployment.yaml
@@ -56,6 +56,9 @@ spec:
56
runAsUser: {{ .Values.securityContext.runAsUser }}
57
{{- end }}
58
env:
59
+ {{- if .Values.extraVars }}
60
+{{ toYaml .Values.extraVars | indent 10 }}
61
+ {{- end }}
62
- name: PASSWORD
63
valueFrom:
64
secretKeyRef:
@@ -65,12 +68,9 @@ spec:
65
68
name: {{ template "code-server.fullname" . }}
66
69
67
70
key: password
- {{- if .Values.extraVars }}
-{{ toYaml .Values.extraVars | indent 12 }}
- {{- end }}
71
{{- if .Values.extraArgs }}
72
args:
73
-{{ toYaml .Values.extraArgs | indent 12 }}
+{{ toYaml .Values.extraArgs | indent 10 }}
74
75
volumeMounts:
76
- name: data
0 commit comments