Skip to content

Commit 705256f

Browse files
docs: document template expression support in Connect
1 parent 7eb4fe8 commit 705256f

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

charts/connect/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

charts/connect/values.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
240241
extraVolumes:
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.
250256
extraVolumeMounts:
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.
260270
connectResources:

0 commit comments

Comments
 (0)