File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 6161 value : {{ .Values.url }}
6262 - name : CODER_NAMESPACE
6363 value : {{ .Values.namespace | default .Release.Namespace }}
64+ {{- if .Values.image.sslCertFile }}
65+ - name : SSL_CERT_FILE
66+ value : {{ .Values.image.sslCertFile }}
67+ {{- end }}
68+ {{- if .Values.image.sslCertDir }}
69+ - name : SSL_CERT_DIR
70+ value : {{ .Values.image.sslCertDir }}
71+ {{- end }}
72+ {{- if .Values.volumeMounts }}
73+ volumeMounts : {{- toYaml .Values.volumeMounts | nindent 12 }}
74+ {{- end }}
75+ {{- if .Values.volumes }}
76+ volumes : {{- toYaml .Values.volumes | nindent 8 }}
77+ {{- end }}
Original file line number Diff line number Diff line change 55# If unspecified, this defaults to the Helm namespace.
66namespace : " "
77
8+ # volumes -- A list of extra volumes to add to the coder-logstream pod.
9+ volumes :
10+ # emptyDir: {}
11+ # - name: "my-volume"
12+
13+ # volumeMounts -- A list of extra volume mounts to add to the coder-logstream pod.
14+ volumeMounts :
15+ # - name: "my-volume"
16+ # mountPath: "/mnt/my-volume"
17+
818# image -- The image to use.
919image :
1020 # image.repo -- The repository of the image.
@@ -21,6 +31,12 @@ image:
2131 # a private registry.
2232 pullSecrets : []
2333 # - name: "pull-secret"
34+ # image.sslCertFile -- Location of the SSL certificate file. Sets the $SSL_CERT_FILE
35+ # variable inside of the container.
36+ sslCertFile : " "
37+ # image.sslCertDir -- Directory to check for SSL certificate files. Sets the $SSL_CERT_DIR
38+ # variable inside of the container.
39+ sslCertDir : " "
2440
2541serviceAccount :
2642 # serviceAccount.annotations -- The service account annotations.
You can’t perform that action at this time.
0 commit comments