View application resources argocd
List all Kubernetes resources managed by an app
argocd app resources myapp
more argocd
all 27 commands →
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
Diff rendered manifests vs cluster
argocd app manifests <name> | kubectl diff -f -