You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an RKE cluster and installed flux2 with the Flux CLI. When using the uninstall command with the --crds argument it removes all namespaces and CRDs as expected, but the flux-system namespace is stuck terminating. When removing the fluxcd labels from the namespace then the namespace is removed.
A workaround is to first run flux uninstall without the --crds argument. After that I can use flux install --crds to remove the CRDs.
The text was updated successfully, but these errors were encountered:
Got bit by a similar issue today, where I had bootstrapped flux via terraform, and then changed some arguments, so all the objects tried to get replaced (including the namespace), which never succeeded.
I believe this is because the deployments were successfully destroyed before some other objects, just as helmrepositories and helm releases, which are guarded with a finalizer. Without the flux2 pods running, there's nothing to clear the finalizer, so the objects and therefore the namespace is blocked from deleting.
I have an RKE cluster and installed flux2 with the Flux CLI. When using the uninstall command with the --crds argument it removes all namespaces and CRDs as expected, but the flux-system namespace is stuck terminating. When removing the fluxcd labels from the namespace then the namespace is removed.
A workaround is to first run
flux uninstall
without the --crds argument. After that I can useflux install --crds
to remove the CRDs.The text was updated successfully, but these errors were encountered: