File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 61
61
value : {{ .Values.url }}
62
62
- name : CODER_NAMESPACE
63
63
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 5
5
# If unspecified, this defaults to the Helm namespace.
6
6
namespace : " "
7
7
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
+
8
18
# image -- The image to use.
9
19
image :
10
20
# image.repo -- The repository of the image.
@@ -21,6 +31,12 @@ image:
21
31
# a private registry.
22
32
pullSecrets : []
23
33
# - 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 : " "
24
40
25
41
serviceAccount :
26
42
# serviceAccount.annotations -- The service account annotations.
You can’t perform that action at this time.
0 commit comments