-
Hello all, I accidentally uninstalled our HA ArgoCD installation via our internal As this is hardly a desirable default behavior I am pretty sure we got up our setup wrong to cause this to happen. But I was not able to find documentation about uninstalling ArgoCD. And none of the tickets (I found) relating to uninstall report a similar behavior. If anyone could point me in the right direction where to look to help us understand the cascading deletion behavior, that would be greatly appreciated. ArgoCD 1.7.9 Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @rsteppac, unless knowing details of your Kustomize build, I can just guess what was happening:
My next guess would be that your |
Beta Was this translation helpful? Give feedback.
Hi @rsteppac, unless knowing details of your Kustomize build, I can just guess what was happening:
Namespace
resource for theargocd
namespace or your application namespaces or b) theApplication
resources for your appskubectl delete
theargocd
namespace got deleted, tearing down all resources including yourApplication
resources within that namespace, or in the worst case, all application namespaces as wellApplication
resources got deleted tooMy next guess would be that your
Application
resources have the deletion finalizer set, a…