Argo CD로 애플리케이션을 관리하는 명령줄 인터페이스. 더 많은 정보: https://argo-cd.readthedocs.io/en/stable/user-guide/commands/argocd_app/.
argocd app list --output {{json|yaml|wide}}
argocd app get {{애플리케이션_이름}} --output {{json|yaml|wide}}
argocd app create {{애플리케이션_이름}} --repo {{git_레포지토리_주소}} --path {{경로/대상/레포지토리}} --dest-server https://kubernetes.default.svc --dest-namespace {{네임스페이스}}
argocd app delete {{애플리케이션_이름}}
argocd app set {{애플리케이션_이름}} --sync-policy auto --auto-prune --self-heal
argocd app sync {{애플리케이션_이름}} --dry-run --prune
argocd app history {{애플리케이션_이름}} --output {{wide|id}}
argocd app rollback {{애플리케이션_이름}} {{히스토리_id}} --prune