ArgoCD GitOps Essentials: Quick Reference
February 1, 2026•Salih Kayiplar
argocd
gitops
kubernetes
deployment
CIOps vs GitOps
| CIOps (Push) | GitOps (Pull) | |
|---|---|---|
| How | CI pipeline pushes to cluster | ArgoCD watches git, syncs to cluster |
| Use for | Dev/test environments | Staging/production |
Core Concepts
| Concept | What it means |
|---|---|
| Application | CRD grouping K8s resources from a manifest |
| Target state | What's in Git |
| Live state | What's in the cluster |
| Sync | Making live = target |
| Refresh | Comparing Git vs live |
| Health | Is the app actually running and serving? |
Architecture
- API Server: gRPC/REST for Web UI, CLI, CI/CD. Handles auth + RBAC.
- Repo Server: Caches git repos, generates manifests from Helm/Kustomize/YAML.
- App Controller: Watches running apps, detects
OutOfSync, runs lifecycle hooks.
Supported config management
Kustomize, Helm, Jsonnet, plain YAML
Lifecycle hooks order
PreSync → Sync → PostSync → SyncFail
Use for blue/green and canary with Argo Rollouts.
Gotcha
- ArgoCD does not handle traffic shifting or canary analysis — pair it with Argo Rollouts for that
HealthyandSyncedare independent — an app can be synced but unhealthy (e.g. CrashLoopBackOff)- Refresh interval is 3 minutes by default. For faster detection, configure webhooks (GitHub/GitLab/BitBucket)
Ready to scale your cloud infrastructure?
Let's discuss how CloudCops can help you build secure, scalable, and modern DevOps workflows. Schedule a free discovery call today.
Related Snippets
ArgoCD ignoreDifferences Patterns
Copy-paste ignoreDifferences configs for common false OutOfSync issues in ArgoCD.
Jan 18, 2026
argocd
gitops
kubernetes
Kubernetes Useful Commands Cheat Sheet
Battle-tested kubectl commands for daily cluster operations — pod cleanup, version checks, network debugging, bulk patching, and more.
Feb 15, 2026
kubernetes
kubectl
bash
Zalando Postgres Operator: Backup & Restore on Azure
Complete guide to setting up WAL-G backups with Azure Blob Storage for the Zalando Postgres Operator, including restore procedures and troubleshooting.
Feb 10, 2026
kubernetes
postgresql
azure