File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,9 @@ Coder volume definitions.
95
95
secret:
96
96
secretName: { { $secret .name | quote } }
97
97
{ { end -} }
98
+ { { if gt (len .Values.coder.volumes) 0 -} }
99
+ { { toYaml .Values.coder.volumes } }
100
+ { { end -} }
98
101
{ {- end } }
99
102
100
103
{ {/*
@@ -124,6 +127,9 @@ Coder volume mounts.
124
127
subPath: { { $secret .key | quote } }
125
128
readOnly: true
126
129
{ { end -} }
130
+ { { if gt (len .Values.coder.volumeMounts) 0 -} }
131
+ { { toYaml .Values.coder.volumeMounts } }
132
+ { { end -} }
127
133
{ {- end } }
128
134
129
135
{ {/*
Original file line number Diff line number Diff line change @@ -52,7 +52,24 @@ coder:
52
52
# - CODER_TLS_KEY_FILE: set if tls.secretName is not empty.
53
53
# - CODER_PROMETHEUS_ADDRESS: set to 0.0.0.0:6060 and cannot be changed.
54
54
# Prometheus must still be enabled by setting CODER_PROMETHEUS_ENABLE.
55
+ # - KUBE_POD_IP
56
+ # - CODER_DERP_SERVER_RELAY_URL
57
+ #
58
+ # We will additionally set CODER_ACCESS_URL if unset to the cluster service
59
+ # URL.
55
60
env : []
61
+ # - name: "CODER_ACCESS_URL"
62
+ # value: "https://coder.example.com"
63
+
64
+ # coder.volumes -- A list of extra volumes to add to the Coder pod.
65
+ volumes : []
66
+ # - name: "my-volume"
67
+ # emptyDir: {}
68
+
69
+ # coder.volumeMounts -- A list of extra volume mounts to add to the Coder pod.
70
+ volumeMounts : []
71
+ # - name: "my-volume"
72
+ # mountPath: "/mnt/my-volume"
56
73
57
74
# coder.tls -- The TLS configuration for Coder.
58
75
tls :
You can’t perform that action at this time.
0 commit comments