hello,
here is a share of an experience with argocd
I have create an issue by deleting an application that was pending for sync ..
Delete will wait for the app sync indefinitely and app can't be update to fix the sync.
kubectl delete application will not work
to fix this deadlock :
kubectl get application -A$ kubectl edit application appname -n argocdthen remove the finalizer
now delete the application with kubectl
kubectl delete application appnameI have found guidance here
https://github.com/argoproj/argo-cd/issues/1329