Inspect ApplicationSet argocd
List/get ApplicationSets and their generated child apps and generators
argocd appset list && argocd appset get <name> -o yaml
more argocd
all 27 commands →
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
Terminate stuck sync operation
argocd app terminate-op <name>
Run resource restart action
argocd app actions run <name> restart --kind Deployment --resource-name <id>
Add project sync window
argocd proj windows add <name> --kind deny --schedule '0 0 * * *' --duration 8h --applications '*'