See User Guide - Argo CD.
See argocd/.
From a branch which has been pushed to the Git repository:
argocd app diff "${APPLICATION}" --revision="${BRANCH}"
See also Argocd app diff | Argo CD
-
With
kubectl
:kubectl patch Application \ --namespace=argocd "${APPLICATION}" \ --type=json --patch='[{ "op": "remove", "path": "/spec/syncPolicy/automated" }]'
-
With
argocd
:argocd app patch "${APPLICATION}" \ --type=json --patch='[{ "op": "remove", "path": "/spec/syncPolicy/automated" }]'
Re-sync the desired configuration:
argocd app sync scaleway-parca-demo-argocd-applications \
--resource="argoproj.io:Application:argocd/${APPLICATION}"