Create project with RBAC argocd
Isolate apps in a project with source/destination restrictions
argocd proj create myproject --description 'Production apps' --dest 'https://kubernetes.default.svc,prod' --src 'https://github.com/org/*'
more argocd
all 27 commands →
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 -
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