Conversation
StatefulSet-based deployment with:
- Pipeline config via ConfigMap (inline or existing)
- Secrets for credentials only (user/password) — expanded via ${VAR}
in pipeline config at startup
- PVC for SQLite checkpoints + DLQ (persistent across restarts)
- Liveness (/health) and readiness (/ready) probes
- Prometheus metrics port (9000) with optional ServiceMonitor
- Configurable resources, security context, scheduling
- PodDisruptionBudget for multi-replica
- `terminationGracePeriodSeconds: 30` for graceful checkpoint flush
Located at deploy/helm/deltaforge/ following CNCF convention.
Usage:
helm install deltaforge ./deploy/helm/deltaforge \
--set secrets.create=true \
--set secrets.data.MYSQL_USER=cdc_user \
--set secrets.data.MYSQL_PASSWORD=s3cret
Verified: helm lint (0 failures), helm template (all variants render).
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.
What
Helm chart at
deploy/helm/deltaforge/for deploying DeltaForge on Kubernetes. Deployment guide atdocs/src/deployment.md.Chart features:
${VAR}in DSN at startup/health) and readiness (/ready) probesterminationGracePeriodSeconds: 30for graceful checkpoint flushDocs:
docs/src/deployment.md: Docker, Docker Compose, Kubernetes/Helm deployment guideTested on k3d: chart installs, pod starts, config loads, retry logic works. Validated with
helm lint+helm templatefor all value combinations.Why
Helm chart is the biggest adoption friction reducer for Kubernetes users and the foundation for the future operator (PipelineTemplate, PipelinePool, auto-scaling for 300+ source clusters).
Testing
helm lint deploy/helm/deltaforge- 0 failureshelm templateverified for: default values, ServiceMonitor, Secret creation, postgres backend, existingConfigMap, multi-replica PDBmdbook build docs/- buildsChecklist
cargo test)cargo fmt)