File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -205,10 +205,22 @@ spec:
205
205
resources :
206
206
{{- toYaml . | nindent 12 }}
207
207
{{- end }}
208
+ {{- if .Values.lake.volumeMounts }}
209
+ volumeMounts :
210
+ {{- range $volumeMount := .Values.lake.volumeMounts }}
211
+ - {{- $volumeMount | toYaml | nindent 14 }}
212
+ {{- end }}
213
+ {{- end }}
208
214
{{- with .Values.lake.containerSecurityContext }}
209
215
securityContext :
210
216
{{- toYaml . | nindent 12 }}
211
217
{{- end }}
218
+ {{- if .Values.lake.volumes }}
219
+ volumes :
220
+ {{- range $volume := .Values.lake.volumes }}
221
+ - {{- $volume | toYaml | nindent 10 }}
222
+ {{- end }}
223
+ {{- end }}
212
224
{{- if .Values.lake.hostNetwork }}
213
225
hostNetwork : true
214
226
dnsPolicy : ClusterFirstWithHostNet
Original file line number Diff line number Diff line change @@ -252,6 +252,21 @@ lake:
252
252
deployment :
253
253
extraLabels : {}
254
254
255
+ # Additional volumes to include in the Pod. Example:
256
+ #
257
+ # volumes:
258
+ # - name: my-volume
259
+ # configMap: my-config-map
260
+ volumes : []
261
+
262
+ # Additional volume mounts to include in the Container. Example:
263
+ #
264
+ # volumeMounts:
265
+ # - name: test-volume
266
+ # mountPath: /opt/test_folder
267
+ # subPath: test_file.yaml
268
+ volumeMounts : []
269
+
255
270
ui :
256
271
image :
257
272
repository : devlake.docker.scarf.sh/apache/devlake-config-ui
You can’t perform that action at this time.
0 commit comments