Declarative Continuous Deployment for Kubernetes
Find a file
2018-09-12 23:41:42 -07:00
.argo-ci Use named FIFO so we can exit with non-zero status (#516) 2018-08-16 13:22:29 -07:00
cmd Fix app sync / wait panic in CLI 2018-09-12 23:41:42 -07:00
common Issue #577 - Add rbac non resource url policy for argocd-manager-role (#578) 2018-09-11 13:23:10 -07:00
controller Issue #330 - Projects need controls on cluster-scoped resources (#558) 2018-09-11 15:10:47 -07:00
docs Update getting started and docs to point to v0.8.1 (#575) 2018-09-10 19:05:47 -07: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 Fix argocd app wait printing incorrect Sync output (resolves #542) (#543) 2018-08-31 11:25:15 -07:00
manifests Downgrade ksonnet from v0.12.0 to v0.11.0 due to quote unescape regression 2018-09-12 23:41:42 -07:00
pkg Issue #330 - Projects need controls on cluster-scoped resources (#558) 2018-09-11 15:10:47 -07:00
reposerver Downgrade ksonnet from v0.12.0 to v0.11.0 due to quote unescape regression 2018-09-12 23:41:42 -07:00
server Add iat as path param for delete token http call (#586) 2018-09-12 19:49:20 -07:00
test Support an automated sync policy upon detection of OutOfSync status from git (#571) 2018-09-11 14:28:53 -07:00
util Issue #330 - Projects need controls on cluster-scoped resources (#558) 2018-09-11 15:10:47 -07:00
workflows Add workflow for blue-green deployments (#148) 2018-05-03 09:52:46 -07: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 Fix app sync / wait panic in CLI 2018-09-12 23:41:42 -07:00
CONTRIBUTING.md Support for kustomize app directories (#510) 2018-08-15 14:54:56 -07:00
Dockerfile Downgrade ksonnet from v0.12.0 to v0.11.0 due to quote unescape regression 2018-09-12 23:41:42 -07:00
gometalinter.json Improve CI build stability 2018-05-07 12:44:14 -07:00
Gopkg.lock Downgrade ksonnet from v0.12.0 to v0.11.0 due to quote unescape regression 2018-09-12 23:41:42 -07:00
Gopkg.toml Downgrade ksonnet from v0.12.0 to v0.11.0 due to quote unescape regression 2018-09-12 23:41:42 -07:00
LICENSE Fix LICENSE copyright text 2018-06-21 01:03:50 -07:00
Makefile Update manifests to use v0.8.0 2018-09-04 17:58:50 -07:00
OWNERS Added OWNERS file 2018-05-02 18:24:50 -07:00
Procfile Issue 499 - fileFiles path should be relative to app directory (#552) 2018-09-05 23:37:26 +03:00
README.md Add link to SigApps video and update CHANGELOG for v0.8.1 (#572) 2018-09-10 16:08:08 -07:00
VERSION Support an automated sync policy upon detection of OutOfSync status from git (#571) 2018-09-11 14:28:53 -07:00
version.go Add ksonnet version to version endpoint (#433) 2018-07-20 09:13:16 -07:00

Coverage Status

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

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:

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 ArgoCD, 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

Development Status

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

Roadmap

  • Auto-sync toggle to directly apply git state changes to live state
  • Revamped UI, and feature parity with CLI
  • Customizable application actions