This repository contains Helm charts for Flipt, an open-source, self-hosted feature flag solution.
Please create an issue or submit a pull request for any issues or missing features.
The stable Flipt v1 chart provides a production-ready deployment of Flipt with database backend support.
- Chart Name:
flipt
- Status: Stable
- Documentation: Chart README | Flipt v1 Docs
Installation:
helm repo add flipt https://helm.flipt.io
helm install my-flipt flipt/flipt
The Flipt v2 chart provides Git-native feature flag management with real-time streaming, built-in secrets management, and advanced multi-environment workflows.
- Chart Name:
flipt-v2
- Status: Stable
- Documentation: Chart README | Flipt v2 Docs
Installation:
helm repo add flipt https://helm.flipt.io
helm install my-flipt-v2 flipt/flipt-v2
Helm must be installed to use the charts. Please refer to Helm's documentation to get started.
helm repo add flipt https://helm.flipt.io
helm repo update
# List all available charts (v1 + v2)
helm search repo flipt
Feature | Flipt v1 | Flipt v2 |
---|---|---|
Status | Stable | Stable |
Storage | Database (SQLite, PostgreSQL, MySQL, etc.) | Git-native |
Real-time Updates | ❌ Polling-based | ✅ Streaming API with real-time flag changes |
Secrets Management | ❌ Manual configuration | ✅ Built-in (File, HashiCorp Vault, more) |
Environments | UI-managed namespaces | Server-defined multi-environments |
Workflows | Traditional UI management | Branch-based development with merge proposals |
Dependencies | Database required | Standalone binary, optional Git sync |
Configuration | Database + config file/env vars | Git repositories + config file/env vars |
Commit Signing | ❌ Not supported | ✅ GPG signing support |
Choose Flipt v1 if:
- You need a stable, production-ready solution
- You prefer traditional database-backed storage
- You want UI-managed namespaces
- You need proven reliability and extensive documentation
- You're okay with polling-based updates
Choose Flipt v2 if:
- You want Git-native feature flag management
- You need real-time streaming updates for flag changes
- You require built-in secrets management (Vault, etc.)
- You need multi-environment support with Git workflows
- You prefer branch-based development and merge proposals
- You want GPG commit signing capabilities
- You want production-ready Git-native feature flag management
This project uses Semantic Versioning.
Our versioning strategy is based on the version of application that is packaged in the chart:
- Each minor version bump of the application will also increase the minor version of the chart.
- Each patch version bump of the application will also increase the patch version of the chart.
Note: Some changes to the chart will not affect the application version. For example, if there is a bugfix or patch change to the chart that does not affect the application, the chart version will be incremented, but the application version will remain the same.
The source code of all Flipt Helm charts can be found on Github: https://github.com/flipt-io/helm-charts/