Hi everyone I have created an argoCD setup throug...
# kubernetes
g
Hi everyone I have created an argoCD setup through Pulumi. everything works fine so far but when deleting the stack, I can see everything being destroyed properly on argoCD side but pulumi hanging forever without much information of what's going on. Is there any way to debug this and know what's blocking the execution? Many thanks!
a
argo cd will put finalizers on the app sets. try to manually patch them to be finalizers: [] so it can be deleted
d
@gorgeous-leather-93186 is ArgoCD itself being uninstalled while there still exists some ApplicationSets? If so, would suggest refactoring such that ArgoCD is uninstalled last, by using dependsOn in some way.
g
Thx all for the help I am gonna have a look 2 both comments and let you know!