Skip to content

Commit 1719dc5

Browse files
feat(chart/electric): expose extraVolumes/extraVolumeMounts
Adds `electric.extraVolumes` and `electric.extraVolumeMounts` (same pattern as webapp/supervisor) so operators can: - Provide the writable `/app/persistent` mount Electric requires at runtime (as an emptyDir, PVC, etc.) — previously the chart had no knob for this. - Mount additional volumes such as enterprise CA bundles for TLS validation against private registries or Postgres. Defaults are empty lists, preserving current behavior. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 468e9ed commit 1719dc5

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

hosting/k8s/helm/values.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,27 @@ electric:
572572
# - name: CUSTOM_VAR
573573
# value: "custom-value"
574574

575+
# Extra volumes added to the Electric pod. Use cases include providing
576+
# the `/app/persistent` mount Electric needs at runtime (e.g. as an
577+
# emptyDir or PVC), or mounting an enterprise CA bundle.
578+
extraVolumes:
579+
[]
580+
# - name: persistent
581+
# emptyDir: {}
582+
# - name: ca-bundle
583+
# configMap:
584+
# name: enterprise-ca-bundle
585+
586+
# Extra volume mounts added to the Electric container. Pair with the
587+
# corresponding entries in `extraVolumes`.
588+
extraVolumeMounts:
589+
[]
590+
# - name: persistent
591+
# mountPath: /app/persistent
592+
# - name: ca-bundle
593+
# mountPath: /etc/ssl/enterprise-ca
594+
# readOnly: true
595+
575596
# ClickHouse configuration
576597
# Subchart: https://github.com/bitnami/charts/tree/main/bitnami/clickhouse
577598
clickhouse:

0 commit comments

Comments
 (0)