Diff rendered manifests vs cluster argocd
Diff Argo-rendered manifests against live cluster state before syncing
argocd app manifests <name> | kubectl diff -f -
more argocd
all 27 commands →
Inspect ApplicationSet
argocd appset list && argocd appset get <name> -o yaml
Add private repo with credentials
argocd repo add https://git.example.com/repo.git --username <id> --password $TOKEN
Patch app spec inline
argocd app patch <name> --patch '{"spec":{"source":{"targetRevision":"v2.1"}}}' --type merge
Terminate stuck sync operation
argocd app terminate-op <name>
Run resource restart action
argocd app actions run <name> restart --kind Deployment --resource-name <id>