Pause auto-sync argocd
Disable automated sync for manual control
argocd app set myapp --sync-policy none
more argocd
all 27 commands →
View application resources
argocd app resources myapp
Watch sync status
argocd app wait myapp --sync --health --timeout 120
Create project with RBAC
argocd proj create myproject --description 'Production apps' --dest 'https://kubernetes.default.svc,prod' --src 'https://github.com/org/*'
Override Helm value at sync
argocd app set <name> --helm-set image.tag=v2 --helm-set replicaCount=3
Set plain parameter override
argocd app set <name> -p key=val -p env=prod