is there kustomize version used by flux kustomization? #4518
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The current version compatible with Flux kustomize-controller is Kustomize v5.3.0. We mention this in the changelog, every time we bump a dependency. For example, in kustomize-controller changelog you'll see:
The Flux controllers don't use any external binaries, instead we use the Go SDKs of Kustomize, Helm, Git, etc. The version of each SDK can be found in the If you look in the kustomize-controller go.mod, you'll see the version there, for example: // Pin kustomize to v5.3.0
replace (
sigs.k8s.io/kustomize/api => sigs.k8s.io/kustomize/api v0.16.0
sigs.k8s.io/kustomize/kyaml => sigs.k8s.io/kustomize/kyaml v0.16.0
) |
Beta Was this translation helpful? Give feedback.
The current version compatible with Flux kustomize-controller is Kustomize v5.3.0. We mention this in the changelog, every time we bump a dependency.
For example, in kustomize-controller changelog you'll see:
The Flux controllers don't use any external binaries, instead we use the Go SDKs of Kustomize, Helm, Git, etc. The version of each SDK can be found in the
go.mod
file of each controller.If you look in the kustomize-controller go.mod, you'll see the version there, for example: