Skip to content

Argo CD📜

Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.

ArgoCD is a kubernetes native tool that enables the delivery of GitOps practices. It uses a git repository as a source of truth in defining the desired state. It is implemented as a kubernetes controller continously montoring running applications and reconciling it against the desired state in the source git repository.

Argo CD uses an Application Controller component to continuously watch applications that are executing. Argo CD then differentiates the applications live state against the target state that resides in the Git repository. It supports a range of configuration management tools such as Helm, kustomize, ksonnet, and jsonnet.

Key Features📜

  • Manage and Deploy multiple clusters
  • Automated application deployment
  • SSO Integration (OIDC, OAuth2, LDAP, SAML 2.0, GitHub, GitLab, Microsoft, LinkedIn).
  • Multiple tenants and RBAC policies for authorization
  • Monitoring of deployed applications continuously
  • Rollback/Roll-anywhere to any application state committed in the Git repository
  • PreSync, Sync, PostSync hooks to support complex application rollouts
  • Web UI which provides real-time view of application activity
  • Prometheus metrics
  • Health status analysis of application resources

Click the link for additional ArgoCD features.

Get Started📜

To quickly get started using Argo CD execute the below commands:

kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

Or follow along in ArgoCD’s getting started guide.

Explore this link for an architectural overview and component definition.


Last update: 2021-05-12 by branden.cobb