File tree 3 files changed +13
-12
lines changed
3 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 22
22
23
23
Administrator credentials:
24
24
25
- Password : $(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "code-server.fullname" . }} -o jsonpath="{.data.password}" | base64 --decode)
25
+ Password: echo $(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "code-server.fullname" . }} -o jsonpath="{.data.password}" | base64 --decode)
Original file line number Diff line number Diff line change @@ -80,21 +80,21 @@ spec:
80
80
mountPath : /home/coder/.local/share/code-server
81
81
subPath : code-server
82
82
{{- range .Values.extraConfigmapMounts }}
83
- - name : {{ .name }}
84
- mountPath : {{ .mountPath }}
85
- subPath : {{ .subPath | default "" }}
86
- readOnly : {{ .readOnly }}
83
+ - name : {{ .name }}
84
+ mountPath : {{ .mountPath }}
85
+ subPath : {{ .subPath | default "" }}
86
+ readOnly : {{ .readOnly }}
87
87
{{- end }}
88
88
{{- range .Values.extraSecretMounts }}
89
- - name : {{ .name }}
90
- mountPath : {{ .mountPath }}
91
- readOnly : {{ .readOnly }}
89
+ - name : {{ .name }}
90
+ mountPath : {{ .mountPath }}
91
+ readOnly : {{ .readOnly }}
92
92
{{- end }}
93
93
{{- range .Values.extraVolumeMounts }}
94
- - name : {{ .name }}
95
- mountPath : {{ .mountPath }}
96
- subPath : {{ .subPath | default "" }}
97
- readOnly : {{ .readOnly }}
94
+ - name : {{ .name }}
95
+ mountPath : {{ .mountPath }}
96
+ subPath : {{ .subPath | default "" }}
97
+ readOnly : {{ .readOnly }}
98
98
{{- end }}
99
99
ports :
100
100
- name : http
Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ persistence:
114
114
accessMode : ReadWriteOnce
115
115
size : 1Gi
116
116
annotations : {}
117
+ # existingClaim: ""
117
118
118
119
serviceAccount :
119
120
create : true
You can’t perform that action at this time.
0 commit comments