Skip to content

Commit 3570ff7

Browse files
Merge pull request #14 from hammady/feature/helm3
Merge hammady/code-server/feature/helm3 into Matthew-Beckett/code-server/feature/helm3
2 parents e858d11 + fd241d5 commit 3570ff7

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

charts/code-server/templates/NOTES.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
Administrator credentials:
2424

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)

charts/code-server/templates/deployment.yaml

+11-11
Original file line numberDiff line numberDiff line change
@@ -80,21 +80,21 @@ spec:
8080
mountPath: /home/coder/.local/share/code-server
8181
subPath: code-server
8282
{{- 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 }}
8787
{{- end }}
8888
{{- range .Values.extraSecretMounts }}
89-
- name: {{ .name }}
90-
mountPath: {{ .mountPath }}
91-
readOnly: {{ .readOnly }}
89+
- name: {{ .name }}
90+
mountPath: {{ .mountPath }}
91+
readOnly: {{ .readOnly }}
9292
{{- end }}
9393
{{- 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 }}
9898
{{- end }}
9999
ports:
100100
- name: http

charts/code-server/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ persistence:
114114
accessMode: ReadWriteOnce
115115
size: 1Gi
116116
annotations: {}
117+
# existingClaim: ""
117118

118119
serviceAccount:
119120
create: true

0 commit comments

Comments
 (0)