helm: use StatefulSet with PVC for persistent storage#48
Merged
Conversation
Switch the default workload from Deployment to StatefulSet with a PersistentVolumeClaim, so databroker state and bootstrap config survive pod restarts. Bootstrap config is now written to the PVC instead of a Kubernetes Secret, removing the need for secret-patch RBAC. The previous Deployment behavior is preserved behind `persistence.enabled: false` for users who don't need local storage (e.g. when using an external databroker like PostgreSQL). New values: persistence.enabled (default: true) persistence.storageClass persistence.size (default: 1Gi) persistence.accessModes (default: [ReadWriteOnce])
Add createNamespace value (default: true) that renders a Namespace resource, so users no longer need --create-namespace on install. Set createNamespace: false if managing the namespace externally.
calebdoxsey
approved these changes
Apr 10, 2026
Publishes chart as 0.0.0-git.<sha> to the OCI registry whenever files under zero/helm/ change on main. This allows testing chart changes without cutting a release.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
file:///data/bootstrap.dat) instead of a Kubernetes Secret, removing the need for secret-patch RBACpersistence.enabled: falsefor users with external storage (e.g. PostgreSQL)New
values.yamloptionspersistence.enabledtruepersistence.storageClass""persistence.size1Gipersistence.accessModes[ReadWriteOnce]Test plan
make testpasses (35 unit tests viahelm template+yq)helm template . --set pomeriumZeroToken=trenders StatefulSet with PVChelm template . --set pomeriumZeroToken=t --set persistence.enabled=falserenders Deployment with secret-based bootstrap