ArgoCD — most popular GitOps tool для Kubernetes (CNCF graduated 2022). Agent в cluster continuously compares Git state vs actual, applies diffs. Nice web UI с visualisation health/sync status. Typical setup: 1 ArgoCD install manages multiple clusters/apps. Scale: Intuit uses ArgoCD для 1000+ apps. Alternatives: Flux CD (simpler, pull-based).
Ниже: подробности, пример, смежные термины, FAQ.
# App of apps bootstrap
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: bootstrap
spec:
source:
repoURL: git@github.com:me/manifests
path: apps/ # contains more Application CRDs
targetRevision: HEAD
destination: { server: https://kubernetes.default.svc, namespace: argocd }
syncPolicy: { automated: { prune: true } }ArgoCD: better UI, UI-driven adoption. Flux: simpler, native cross-cluster. Enterprise often ArgoCD (UI для devs). Platform teams часто Flux.
ArgoCD manages multiple clusters из one UI. Нужны credentials. Alternative — instance per cluster.
Default configs: ~1000 apps per instance. Large setups — shard controllers по clusters/projects.