-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Kustomize components #753
Comments
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Oct 28, 2022
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Oct 28, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 10, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 10, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 10, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 15, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 15, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 15, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 15, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 15, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 15, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 15, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 15, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 16, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Nov 18, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
klausenbusk
added a commit
to klausenbusk/kustomize-controller
that referenced
this issue
Dec 2, 2022
Fix fluxcd#753 Signed-off-by: Kristian Klausen <kristian@klausen.dk>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We are using Flux's
Kustomization
for itsdependsOn
functionality to install the workloads in a specific order, ex:Kyverno
first, then CRDs (ServiceMonitors
,ExternalSecrets
etc.) and last team applications. It works very well.Kustomize supports components and part of the motivation is (described in the KEP):
This is a very useful feature and what we need for our use-case. Unfortunately, it is bit hard to use with Flux's
Kustomization
.In our case we have a few environments (clusters):
The rest of the structure
We want to enable some optional features for Grafana in the dev environment, let's say OAuth and add a ingress.
If Flux's
Kustomization
supported components that would be very easy to implement, I suppose it could look like this:(preferable with
x-kubernetes-patch-merge-key
andx-kubernetes-patch-strategy
for thecomponents
so it can be strategic merged)Today the only option is patching the Flux
Kustomization
and creating a new overlay:environments/dev/monitoring-kustomization.yaml
components-hack/monitoring-dev/kustomization.yaml
This is a bit cumbersome and adds unnecessary complexity. If Flux's
Kustomization
supportedcomponents
we could avoid all this.The text was updated successfully, but these errors were encountered: