ArgoCD Cheatsheet

Top commands.

Overview

Argo CD is the GitOps continuous-delivery tool for Kubernetes. Five primitives carry most operational use: git as the source of truth, auto-sync, drift detection, rollback via git revert, multi-cluster management from one instance. The discipline turns deployment into pull-request review and treats the cluster as a derived state of the repo.

The approach

Application per service, auto-sync with prune disabled by default, CLI-first investigation, App-of-Apps pattern for meta-management. Five idioms cover most operational use; memorising them moves the team from kubectl-driven deploys to confident GitOps.

Why this compounds

Each application that adopts the patterns shortens the next deploy. Auto-sync removes the manual handoff; drift detection prevents the slow accumulation of cluster-only changes; git revert turns rollback into a five-second operation. By year two, every new service ships with Argo CD config on day one.