Create application from CLI argocd
Declaratively create an ArgoCD app with auto-sync
argocd app create myapp --repo https://github.com/org/repo --path k8s/prod --dest-server https://kubernetes.default.svc --dest-namespace default --sync-policy automated
more argocd
all 27 commands →
Delete application (keep resources)
argocd app delete myapp --cascade=false
Add cluster to ArgoCD
argocd cluster add my-k8s-context
List registered clusters
argocd cluster list
Set image override
argocd app set myapp --kustomize-image myapp=myregistry/myapp:v1.2.3
Pause auto-sync
argocd app set myapp --sync-policy none