
FluxCD Has a Free API: GitOps Toolkit for Kubernetes at Scale
Why FluxCD Flux is a CNCF GitOps toolkit — modular, composable controllers that sync Git repos, Helm charts, OCI artifacts, and Kustomize overlays to Kubernetes. It is the GitOps standard alongside Argo CD. Install brew install fluxcd/tap/flux flux install Bootstrap with GitHub flux bootstrap github \ --owner = myorg \ --repository = fleet-infra \ --path = clusters/production \ --personal Git Repository Source apiVersion : source.toolkit.fluxcd.io/v1 kind : GitRepository metadata : name : my-app namespace : flux-system spec : interval : 1m url : https://github.com/myorg/my-app ref : branch : main Kustomization apiVersion : kustomize.toolkit.fluxcd.io/v1 kind : Kustomization metadata : name : my-app namespace : flux-system spec : interval : 5m targetNamespace : production sourceRef : kind : GitRepository name : my-app path : ./k8s prune : true healthChecks : - apiVersion : apps/v1 kind : Deployment name : my-app namespace : production Helm Release apiVersion : helm.toolkit.fluxcd.io/v2
Continue reading on Dev.to DevOps
Opens in a new tab

