File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -258,13 +258,13 @@ Names of Secrets or ConfigMaps that contain environment variables to pass to the
258258
259259### [ extraVolumeMounts] ( https://artifacthub.io/packages/helm/redpanda-data/connect?modal=values&path=extraVolumeMounts )
260260
261- Additional volume mounts for the container.
261+ Additional volume mounts for the container. Helm template expressions are supported and will be evaluated before rendering.
262262
263263** Default:** ` [] `
264264
265265### [ extraVolumes] ( https://artifacthub.io/packages/helm/redpanda-data/connect?modal=values&path=extraVolumes )
266266
267- Additional volumes to add to the Pod.
267+ Additional volumes to add to the Pod. Helm template expressions are supported and will be evaluated before rendering.
268268
269269** Default:** ` [] `
270270
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ updateStrategy: {}
237237# maxUnavailable: 1
238238
239239# -- Additional volumes to add to the Pod.
240+ # Helm template expressions are supported and will be evaluated before rendering.
240241extraVolumes :
241242 []
242243 # - name: config-map
@@ -245,8 +246,13 @@ extraVolumes:
245246 # - name: secret
246247 # secret:
247248 # secretName: s-name
249+ # Template expressions are supported, e.g. when using this chart as a subchart:
250+ # - name: parent-config
251+ # configMap:
252+ # name: '{{ .Release.Name }}-config'
248253
249254# -- Additional volume mounts for the container.
255+ # Helm template expressions are supported and will be evaluated before rendering.
250256extraVolumeMounts :
251257 []
252258 # - name: config-map
@@ -255,6 +261,10 @@ extraVolumeMounts:
255261 # - name: secret
256262 # mountPath: /mnt/secret
257263 # readOnly: true
264+ # Template expressions are supported, e.g. when using this chart as a subchart:
265+ # - name: parent-config
266+ # mountPath: '/mnt/{{ .Release.Name }}'
267+ # readOnly: true
258268#
259269# -- Configuration settings for resources in Redpanda Connect.
260270connectResources :
You can’t perform that action at this time.
0 commit comments