Create HelmRelease flux
Deploy a chart via Flux HelmRelease resource
flux create helmrelease <name> --source=HelmRepository/<repo> --chart=<chart> --chart-version='>=1.0.0' -n <ns>
more flux
all 29 commands →
Get Flux events
kubectl get events -n flux-system --sort-by='.lastTimestamp' | tail -20
Delete Flux resource
flux delete kustomization <name> -n <ns>
Flux image update automation
flux create image update <name> --git-repo-ref=<repo> --git-repo-path=./deploy --checkout-branch=main --push-branch=main -n flux-system
Logs of Flux controller
flux logs --kind=kustomize-controller -n flux-system --tail=50
Push image policy
flux create image policy <name> --image-ref=<image-repo> --select-semver='>=1.0.0' -n flux-system