Using Flux with Helm
Learn how Flux can manage Kubernetes workloads with Helm charts.
GitOps with Helm
Flux provides support for using Helm charts to manage Kubernetes workloads with GitOps. Helm with Flux is an alternative to managing Kubernetes manifests with plain YAML. When Flux is installed on a cluster, the installation provisions a helm-controller
, which can be used to declaratively manage the release of Helm charts on a cluster.
helm-controller
When the helm-controller
is used to manage Kubernetes workloads with GitOps, the desired state of the system is described within a Helm chart. Similar to the kustomize-controller
, the helm-controller
searches for a source that contains this desired state and syncs it on the cluster. When ...