Declarative Continuous Deployment for Kubernetes
Find a file
2019-03-19 01:12:21 -07:00
.argo-ci Migrates from gometalinter to golangci-lint. Closes #1225 (#1226) 2019-03-08 16:22:04 -08:00
assets Fix isssue where argocd app set -p required repo privileges. (#1280) 2019-03-18 14:39:32 -07:00
cmd Issue #1287 - Fix local diff of non-namespaced resources. Also handle duplicates in local diff (#1289) 2019-03-18 21:19:08 -07:00
common Add golang prometheus metrics to controller and repo-server (#1281) 2019-03-18 11:32:20 -07:00
controller Issue #1290 - Fix concurrent read/write error in state cache (#1293) 2019-03-18 23:38:10 -07:00
docs Sample Grafana dashboard (#1277) 2019-03-19 01:12:21 -07:00
errors Support persistence of repos as secrets 2018-02-21 03:01:43 -08:00
examples Sample Grafana dashboard (#1277) 2019-03-19 01:12:21 -07:00
hack Git cloning via SSH was not verifying host public key (#1276) 2019-03-15 14:29:10 -07:00
manifests Fix isssue where argocd app set -p required repo privileges. (#1280) 2019-03-18 14:39:32 -07:00
pkg Fix isssue where argocd app set -p required repo privileges. (#1280) 2019-03-18 14:39:32 -07:00
reposerver Git cloning via SSH was not verifying host public key (#1276) 2019-03-15 14:29:10 -07:00
resource_customizations Fix broken test for rollout health lua (#1213) 2019-03-03 20:26:19 -08:00
server Fix a goroutine leak in api-server application.PodLogs and application.Watch (#1292) 2019-03-18 21:50:11 -07:00
test Issue #1070 - Handle duplicated resource definitions (#1284) 2019-03-18 13:21:03 -07:00
util Issue #1290 - Fix concurrent read/write error in state cache (#1293) 2019-03-18 23:38:10 -07:00
.codecov.yml Update versions for kubectl (v1.13.1), helm (v2.12.1), ksonnet (v0.13.1) (#973) 2019-01-03 15:16:08 -08:00
.dockerignore Refactor packr box usage into new assets library. Add faster DEV_IMAGE build (#1073) 2019-02-01 13:12:52 -08:00
.gitignore Enable code coverage (#500) 2018-08-09 15:54:15 -07:00
.golangci.yml Issue #1252 - Application controller incorrectly build application objects tree (#1253) 2019-03-11 11:31:46 -07:00
CHANGELOG.md Update documentation for v0.12.0 (#1227) 2019-03-06 00:09:01 -08:00
CONTRIBUTING.md Add note about Kustomize1 (#1263) 2019-03-17 22:25:20 -07:00
Dockerfile Git cloning via SSH was not verifying host public key (#1276) 2019-03-15 14:29:10 -07:00
Dockerfile.dev Refactor packr box usage into new assets library. Add faster DEV_IMAGE build (#1073) 2019-02-01 13:12:52 -08:00
Gopkg.lock Issue #1247 - Fix CRD creation/deletion handling (#1249) 2019-03-11 08:50:00 -07:00
Gopkg.toml Diff view shows incorrect base/value comparison (issue #725) (#809) 2018-11-19 12:41:53 -08:00
LICENSE Fix LICENSE copyright text 2018-06-21 01:03:50 -07:00
Makefile Tweak lint (#1259) 2019-03-12 10:31:35 -07:00
OWNERS Added OWNERS file 2018-05-02 18:24:50 -07:00
Procfile Enable debug logging for local development (#1260) 2019-03-12 10:31:51 -07:00
README.md Issue #701 - Add config management plugins documentation (#1175) 2019-03-03 23:19:09 -08:00
VERSION Update CHANGELOG, docs to use stable tag, and tweak getting started guide (#1005) 2019-01-10 20:56:04 -08:00
version.go gRPC API client and gateway now supply user-agent. Require client min version as v0.11 (#841) 2018-11-28 14:06:02 -08:00

slack codecov

Argo CD - Declarative Continuous Delivery for Kubernetes

What is Argo CD?

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

Argo CD UI

Why Argo CD?

Application definitions, configurations, and environments should be declarative and version controlled. Application deployment and lifecycle management should be automated, auditable, and easy to understand.

Getting Started

Quickstart

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

Follow our getting started guide. Further documentation is provided for additional features.

How it works

Argo CD follows the GitOps pattern of using git repositories as the source of truth for defining the desired application state. Kubernetes manifests can be specified in several ways:

  • kustomize applications
  • helm charts
  • ksonnet applications
  • jsonnet files
  • Plain directory of YAML/json manifests
  • Any custom config management tool configured as a config management plugin

Argo CD automates the deployment of the desired application states in the specified target environments. Application deployments can track updates to branches, tags, or pinned to a specific version of manifests at a git commit. See tracking strategies for additional details about the different tracking strategies available.

For a quick 10 minute overview of Argo CD, check out the demo presented to the Sig Apps community meeting: Alt text

Architecture

Argo CD Architecture

Argo CD is implemented as a kubernetes controller which continuously monitors running applications and compares the current, live state against the desired target state (as specified in the git repo). A deployed application whose live state deviates from the target state is considered OutOfSync. Argo CD reports & visualizes the differences, while providing facilities to automatically or manually sync the live state back to the desired target state. Any modifications made to the desired target state in the git repo can be automatically applied and reflected in the specified target environments.

For additional details, see architecture overview.

Features

  • Automated deployment of applications to specified target environments
  • Support for multiple config management/templating tools (Kustomize, Helm, Ksonnet, Jsonnet, plain-YAML)
  • Ability to manage and deploy to multiple clusters
  • SSO Integration (OIDC, OAuth2, LDAP, SAML 2.0, GitHub, GitLab, Microsoft, LinkedIn)
  • Multi-tenancy and RBAC policies for authorization
  • Rollback/Roll-anywhere to any application configuration committed in git repository
  • Health status analysis of application resources
  • Automated configuration drift detection and visualization
  • Automated or manual syncing of applications to its desired state
  • Web UI which provides real-time view of application activity
  • CLI for automation and CI integration
  • Webhook integration (GitHub, BitBucket, GitLab)
  • Access tokens for automation
  • PreSync, Sync, PostSync hooks to support complex application rollouts (e.g.blue/green & canary upgrades)
  • Audit trails for application events and API calls
  • Prometheus metrics
  • Parameter overrides for overriding ksonnet/helm parameters in git

Community Blogs and Presentations

Project Resources

Development Status

  • Argo CD is actively developed and is being used in production to deploy SaaS services at Intuit

Roadmap

v0.12

  • Support for custom K8S manifest templating engines
  • Support for custom health assessments (e.g. CRD health)
  • Improved prometheus metrics
  • Higher availability
  • UI improvements