Set plain parameter override argocd
Set Kustomize/Helm parameter overrides via -p; modern: prefer Git-tracked overlays for audit
argocd app set <name> -p key=val -p env=prod
more argocd
all 27 commands →
Diff rendered manifests vs cluster
argocd app manifests <name> | kubectl diff -f -
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>