| name | argocd |
| description | ArgoCD GitOps continuous delivery for Kubernetes. Use for K8s GitOps. |
ArgoCD
ArgoCD is the industry standard for GitOps. It syncs the state of a Kubernetes cluster with a Git repository. 2025 features: ApplicationSets for multi-tenant management.
When to Use
- Kubernetes CD: Continuous Delivery specifically for K8s.
- GitOps: You want your cluster state (YAML) versioned in Git.
- Drift Detection: ArgoCD alerts you if someone manually hacks
kubectl edit in production.
Quick Start
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: guestbook
namespace: argocd
spec:
project: default
source:
repoURL: https://github.com/argoproj/argocd-example-apps.git
targetRevision: HEAD
path: guestbook
destination:
server: https://kubernetes.default.svc
namespace: guestbook