Override Helm value at sync argocd
Override Helm values live without touching Git; note: drifts from source until committed
argocd app set <name> --helm-set image.tag=v2 --helm-set replicaCount=3
more argocd
all 27 commands →
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
Patch app spec inline
argocd app patch <name> --patch '{"spec":{"source":{"targetRevision":"v2.1"}}}' --type merge