Skip to content

Latest commit

 

History

History

argocd-applications

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

argocd-applications

See User Guide - Argo CD.

Login with the argocd CLI

See argocd/.

Diff incoming changes

From a branch which has been pushed to the Git repository:

argocd app diff "${APPLICATION}" --revision="${BRANCH}"

See also Argocd app diff | Argo CD

Suspend and resume auto-sync

Suspend

  • 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" }]'

Resume

Re-sync the desired configuration:

argocd app sync scaleway-parca-demo-argocd-applications \
  --resource="argoproj.io:Application:argocd/${APPLICATION}"