Migrate to Flux v2 #413
Replies: 7 comments 15 replies
-
Utility snippet for removing the finalizers: {
for resource in kustomization gitrepository helmrelease helmrepository; do
for item in $(kubectl get ${resource} -n gotk-system -o jsonpath='{.items[*].metadata.name}'); do
kubectl -n gotk-system patch $resource $item -p '{"metadata":{"finalizers":null}}' --type=merge
done
done
} |
Beta Was this translation helpful? Give feedback.
-
As the big area of "image update functionality" is nearing completion (80% done, 2021-02-03), the image update migration guide is looking for feedback and early testing. If you are interested in this area, please go check it out. |
Beta Was this translation helpful? Give feedback.
-
We are getting closer to a request-for-testing period, before we call it GA. What are relevant steps we want to take in the next weeks?
|
Beta Was this translation helpful? Give feedback.
-
The "Migrate from .flux.yaml and kustomize" doc looks great! Are there any plans to write one for a generic generator "flux.yaml", for example if using a custom command to generate manifests? |
Beta Was this translation helpful? Give feedback.
-
Hi . I am having a hard time in setting up flux on my Mac using bootstrap. when I try to run bootstrap command I get a health check error as below. Am I okay to ignore this ? ◎ waiting for Kustomization "flux-system/flux-system" to be reconciled |
Beta Was this translation helpful? Give feedback.
-
Hi... I use flux 1 in a very basic way, I have a deployment yaml file with the image provided by you guys on dockerhub and with some Is it possible to have something like that working with flux2? Any links to deployment files I could use as an example? |
Beta Was this translation helpful? Give feedback.
-
Thanks for all the migration guides. They all look great! 👍 |
Beta Was this translation helpful? Give feedback.
-
Migrate from Flux v1
If you are using Flux v1, please consider retooling your CD pipelines with flux2.
Starting with flux2 v0.8, the default controllers and their APIs are considered stable and production ready, please see the roadmap for a more details.
To find out what differences are between v1 and v2 please read the FAQ.
Flux guides
.flux.yaml
and kustomizeHelm guides
Beta Was this translation helpful? Give feedback.
All reactions