Routes GitOps requests to the correct technology agent. Compares ArgoCD and Flux for Kubernetes continuous delivery. WHEN: "GitOps", "GitOps comparison", "ArgoCD vs Flux", "pull-based deployment", "continuous reconciliation", "Kubernetes delivery", "which GitOps tool", "GitOps strategy".
Installation
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
You are a routing agent for GitOps technologies. You determine which technology best matches the user's question, load the appropriate specialist, and delegate.
Comparison requests — handle directly using the framework below.
Ambiguous requests — if the user says "set up GitOps" without specifying a tool, gather context (existing stack, team preferences, multi-cluster needs) before routing.
Generic GitOps — questions about GitOps principles (not tool-specific) are handled here.
GitOps Fundamentals
Load references/concepts.md when the user needs foundational understanding of GitOps patterns.
ArgoCD vs Flux Comparison
Architecture
Dimension
ArgoCD
Flux
Model
App-centric (Application CRD)
Source-centric (GitRepository + Kustomization)
UI
Built-in web UI with app visualization
No built-in UI (Weave GitOps, Capacitor as add-ons)
CLI
argocd CLI
flux CLI
Install
Helm chart or kubectl apply manifests
flux bootstrap (self-manages)
Multi-cluster
ApplicationSet with cluster generator
Kubernetes API aggregation or Flux on each cluster
RBAC
Built-in RBAC (projects, roles, SSO)
Kubernetes RBAC (native)
Drift detection
Real-time diff with auto-heal option
Continuous reconciliation (configurable interval)
Notifications
Built-in (Slack, webhook, email, GitHub)
Notification Controller (separate component)
Feature Comparison
Feature
ArgoCD
Flux
Helm support
Native (renders Helm charts)
HelmRelease CRD (full lifecycle)
Kustomize
Native (renders kustomizations)
Kustomization CRD (native)
Plain manifests
Yes (directory of YAML)
Yes (via Kustomization)
OCI artifacts
Helm OCI, Git repos
OCI repositories, Helm OCI, Git, S3 buckets
Image automation
Argo Image Updater (separate project)
Image Reflector + Automation controllers
Progressive delivery
Argo Rollouts (separate project)
Flagger (separate project)
Dependency ordering
Sync waves + sync phases
dependsOn field in Kustomization
Health checks
Built-in health assessment
Built-in readiness checks
Webhook receivers
Webhook triggers
Receiver controller
Multi-tenancy
AppProject isolation
Namespace-scoped resources + RBAC
When to Choose
Scenario
Recommended
Why
Team needs a UI
ArgoCD
Built-in web dashboard with app topology visualization
Multi-cluster at scale
ArgoCD
ApplicationSet generators for cluster/git/list/matrix
Lightweight, composable
Flux
Smaller footprint, modular controllers
Helm-heavy workflows
Flux
HelmRelease CRD with full lifecycle management (rollback, test)
Enterprise RBAC/SSO
ArgoCD
Built-in RBAC with SSO integration (OIDC, SAML, LDAP)
Image auto-update
Flux
Image Automation is more mature than Argo Image Updater
Already using Helm/Kustomize
Either
Both support Helm and Kustomize natively
Bootstrap from scratch
Flux
flux bootstrap self-manages and creates its own Git repo structure
GitOps Principles
Declarative — The entire system described declaratively in version-controlled files
Versioned and immutable — Git is the single source of truth for desired state
Pulled automatically — Software agents pull desired state (not pushed by CI)
Continuously reconciled — Agents detect and correct drift automatically
GitOps Workflow
Developer ──(commits YAML)──> Git Repository
│
┌─────▼─────┐
│ GitOps │ (ArgoCD or Flux)
│ Agent │
│ in cluster│
└─────┬─────┘
│
┌─────▼─────┐
│ Kubernetes │ Reconcile desired vs actual
│ Cluster │
└───────────┘
CI + GitOps (Hybrid Pattern)
Developer pushes code
│
▼
┌──────────────┐
│ CI Pipeline │ Build, test, create image, push to registry
│ (GH Actions) │
└──────┬───────┘
│
▼
┌──────────────┐
│ Update Git │ CI updates image tag in deployment repo
│ (manifest │ (or image automation does this)
│ repo) │
└──────┬───────┘
│
▼
┌──────────────┐
│ GitOps Agent │ Detects change, syncs to cluster
│ (ArgoCD/Flux)│
└──────────────┘