Declarative Continuous Deployment for Kubernetes
Find a file
Jesse Suen d40bbb23cb
Fix controller deadlock when checking for stale cache (#1046)
* Controller cache was susceptible to clock skew in managed cluster

* Fix controller deadlock when checking for stale cache
2019-01-18 10:38:51 -08:00
.argo-ci Serve CLI binaries directly from API server (#837) 2018-11-27 13:39:06 -08:00
cmd Fix ability to unset ApplicationSource specific parameters (#1041) 2019-01-17 19:38:35 -08:00
common Increase QPS and Burst used in K8s client configs to 25/50 (#984) 2019-01-07 14:25:07 -08:00
controller Fix controller deadlock when checking for stale cache (#1046) 2019-01-18 10:38:51 -08:00
docs Correct "basehref " in the sample UI base path (#1024) 2019-01-16 07:59:49 -08:00
errors Support persistence of repos as secrets 2018-02-21 03:01:43 -08:00
examples/guestbook Add progressing deadline to test app to fix e2e tets slowness 2018-06-12 08:54:47 -07:00
hack Update kustomize base when setting image tags (#833) 2018-11-28 13:55:38 -08:00
manifests Make injected application instance label configurable from default (#944) 2018-12-23 22:25:04 -08:00
pkg Fix ability to unset ApplicationSource specific parameters (#1041) 2019-01-17 19:38:35 -08:00
reposerver Replace grpc repo-server parallelism limit interceptor with semaphore (#1029) 2019-01-16 15:56:26 -08:00
server Fix PermissionDenied issue during app creation with project roles. Fix custom casbin adapter (#1030) 2019-01-17 10:30:31 -08:00
test Controller cache was susceptible to clock skew in managed cluster (#1043) 2019-01-18 10:38:21 -08:00
util Issue #1039 - Correct redirect to login page if dex authentication is not successful (#1040) 2019-01-17 18:42:57 -08: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 Bump version file to 0.3.0. Add release target and cli-linux/darwin targets 2018-04-23 00:34:08 -07:00
.gitignore Enable code coverage (#500) 2018-08-09 15:54:15 -07:00
CHANGELOG.md Update CHANGELOG, docs to use stable tag, and tweak getting started guide (#1005) 2019-01-10 20:56:04 -08:00
CONTRIBUTING.md Make Argo CD naming consistent (#694) 2018-11-05 11:29:01 -08:00
Dockerfile Downgrade kubectl to v1.12 to regain kubectl convert functionality (#1023) 2019-01-16 11:44:33 -08:00
gometalinter.json Use informers to load ArgoCD settings (#989) 2019-01-08 14:53:45 -08:00
Gopkg.lock Replace grpc repo-server parallelism limit interceptor with semaphore (#1029) 2019-01-16 15:56:26 -08: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 build cli with packr (#875) 2018-12-04 22:42:37 -08:00
OWNERS Added OWNERS file 2018-05-02 18:24:50 -07:00
Procfile Resources events streaming bug fixes: panic (#699), stale cache detection, restaring bad watchers (#852) 2018-11-30 11:29:12 -08:00
README.md Update README (#1014) 2019-01-15 00:02:02 -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:

  • ksonnet applications
  • kustomize applications
  • helm charts
  • Plain directory of YAML/json/jsonnet manifests

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
  • Flexibility in support for multiple config management tools (Ksonnet, Kustomize, Helm, plain-YAML)
  • Continuous monitoring of deployed applications
  • Automated or manual syncing of applications to its desired state
  • Web and CLI based visualization of applications and differences between live vs. desired state
  • Rollback/Roll-anywhere to any application state committed in the git repository
  • Health assessment statuses on all components of the application
  • SSO Integration (OIDC, OAuth2, LDAP, SAML 2.0, GitLab, Microsoft, LinkedIn)
  • Webhook Integration (GitHub, BitBucket, GitLab)
  • PreSync, Sync, PostSync hooks to support complex application rollouts (e.g.blue/green & canary upgrades)
  • Audit trails for application events and API calls
  • Parameter overrides for overriding ksonnet/helm parameters in git
  • Service account/access key management for CI pipelines

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.11

  • New application controller architecture
  • Multi-namespaced applications
  • Large application support
  • Resource lifecycle hook improvements
  • K8s recommended application labels
  • External OIDC provider support
  • OIDC group claims bindings to Project Roles
  • Declarative Argo CD configuration
  • Helm repository support

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