Push image policy flux
Define which image tags Flux should track for automation
flux create image policy <name> --image-ref=<image-repo> --select-semver='>=1.0.0' -n flux-system
more flux
all 29 commands →
OCI source by semver
flux create source oci <name> --url=oci://reg/repo --tag-semver='>=1.0.0' --interval=5m
Push manifests as OCI artifact
flux push artifact oci://reg/manifests:$(git rev-parse --short HEAD) --path=./manifests --source=$(git config --get remote.origin.url) --revision=$(git rev-parse HEAD)
Diff kustomization vs cluster
flux diff kustomization <name> --path ./overlays/prod
Tree of managed objects
flux tree kustomization <name>
Build kustomization locally
flux build kustomization <name> --path ./ | kubectl apply --dry-run=server -f -