backup: enabled: true schedule: "0 2 * * *" s3: endpoint: https://minio.example.com bucket: my-backups accessKey: minioadmin secretKey: minioadmin
backup: enabled: true schedule: "0 2 * * *" s3: endpoint: https://minio.example.com bucket: my-backups accessKey: minioadmin secretKey: minioadmin
backup: enabled: true schedule: "0 2 * * *" s3: endpoint: https://minio.example.com bucket: my-backups accessKey: minioadmin secretKey: minioadmin
data: persistence: enabled: true backup: enabled: true schedule: "0 30 2 * * *" s3: endpoint: https://minio.example.com bucket: vaultwarden-backups prefix: sqlite existingSecret: vaultwarden-backup-s3
data: persistence: enabled: true backup: enabled: true schedule: "0 30 2 * * *" s3: endpoint: https://minio.example.com bucket: vaultwarden-backups prefix: sqlite existingSecret: vaultwarden-backup-s3
data: persistence: enabled: true backup: enabled: true schedule: "0 30 2 * * *" s3: endpoint: https://minio.example.com bucket: vaultwarden-backups prefix: sqlite existingSecret: vaultwarden-backup-s3
architecture: queue database: type: postgresql external: host: my-pg.example.com redis: enabled: true backup: enabled: true schedule: "0 4 * * *" s3: endpoint: https://minio.example.com bucket: n8n-backups
architecture: queue database: type: postgresql external: host: my-pg.example.com redis: enabled: true backup: enabled: true schedule: "0 4 * * *" s3: endpoint: https://minio.example.com bucket: n8n-backups
architecture: queue database: type: postgresql external: host: my-pg.example.com redis: enabled: true backup: enabled: true schedule: "0 4 * * *" s3: endpoint: https://minio.example.com bucket: n8n-backups
# Add the repo
helm repo add helmforge https://repo.helmforge.dev
helm repo update # Or use OCI directly
helm install vaultwarden oci://ghcr.io/helmforgedev/helm/vaultwarden # Show available values
helm show values helmforge/vaultwarden
# Add the repo
helm repo add helmforge https://repo.helmforge.dev
helm repo update # Or use OCI directly
helm install vaultwarden oci://ghcr.io/helmforgedev/helm/vaultwarden # Show available values
helm show values helmforge/vaultwarden
# Add the repo
helm repo add helmforge https://repo.helmforge.dev
helm repo update # Or use OCI directly
helm install vaultwarden oci://ghcr.io/helmforgedev/helm/vaultwarden # Show available values
helm show values helmforge/vaultwarden - Bitnami charts were tightly coupled to Bitnami images. They added custom environment variables, init scripts, and directory layouts. You can't just swap in the official postgres:16 image and have the chart work.
- Forking 300+ charts is insane to maintain. The open-bitnami fork exists, but maintaining hundreds of charts with security patches and K8s compatibility is a full-time job for a team, not a community side project.
- Operators solve the database problem but not the application problem. CloudNativePG is excellent for PostgreSQL. Strimzi is great for Kafka. But what about Vaultwarden? n8n? WordPress? Keycloak? Strapi? There's no operator for every stateful app. - An initContainer that dumps the data (pg_dump, mysqldump, mongodump, sqlite3 .backup, or tar — the chart picks the right tool)
- A main container that uploads the compressed archive to any S3-compatible endpoint
- A ConfigMap with the backup scripts (fully visible, no black boxes) - helm lint --strict
- helm template with default and all CI scenario values
- helm unittest for template logic
- kubeconform for Kubernetes schema validation
- Local k3d cluster validation before merge - Repository: github.com/helmforgedev/charts
- Documentation: helmforge.dev
- Artifact Hub: artifacthub.io/packages/search?repo=helmforge - Add a chart for an app you already run on Kubernetes
- Port a Bitnami chart to use official upstream images
- Improve existing charts — new topologies, better defaults, additional backup strategies
- Open an issue to request a chart or report a bug
- Star the repo if you want to follow the progress - Repository: github.com/helmforgedev/charts
- Documentation: helmforge.dev
- Artifact Hub: artifacthub.io/packages/search?repo=helmforge