Switch language한국어
Back to the list

How to Install Argo CD on Kubernetes with Helm and Understand Every Core Component

TL;DR AI

Key summary

2 min read
  1. Install Argo CD with Helm: add the Argo Helm repo, create an argocd namespace, and install the argo/argo-cd chart.

  2. Main Argo CD components are the server, application controller, repo server, Redis, and optional services like Dex, Notifications, and ApplicationSet.

  3. Argo CD is a GitOps continuous delivery controller for Kubernetes.

  4. It compares the desired state stored in Git with the live cluster state, detecting drift and offering sync to the desired state.

  5. Argo CD focuses on deployment by reading Kubernetes manifests or Helm charts and is not typically a CI system that builds images or runs unit tests.

Read the original