What is GitOps?
What is GitOps?
GitOps is a framework where the entire code is controlled by the git.
GitOps can be considered an extension of Infrastructure as Code (IaC) that uses Git as the Version control System.
GitOps Principles
- Declarative vs imperative
- Make use of Git.
- Pull Request
- Reconcile Loop
DevOps Vs GitOps
Push vs Pull based Deployments
GitOps Features
GitOps Benefits & Challenges
Pro’s
- Lightweight and Vendor-neutral
- Faster, Safer, Immutable and Reproducible Deployments
- Eliminating configuration drift
- uses familiar tools and processes
- Revisions with history
Con’s
- Doesn’t help with Secret Management
- Number of Git repositories
- Challenges with programmatic updates.
- Governance other than PR approval.
- Malformed YAML/Config manifests.
GitOps Projects/Tools
ArgoCD:
FluxCD
Atlantis
Autoapply
CloudBees Rollout:
JenkinsX: CI/CD Platform
Flagger:
Ignite: VM Manager
Faros
Helm Operator
Weave GitOps Core
KubeStack
Weave Cloud
GitKube
PipeCD
Werf
What is ArgoCD?
- Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes resources defined in a Git repository.
- Continuously monitors running applications and compares their live state to the desired state.
- It reports the deviations and provides visualizations to help developers manually or automatically sync the live state with the desired state.
Why use ArgoCD
- It extends the benefits of declarative specifications and Git-based configuration management.
- It is the first step in achieving continuous operations on monitoring, analytics, and automation remediation.
- It can deploy to multiple clusters and is Enterprise-friendly( audibility, compliance, security, RBAC, SSO and a lot more.
How ArgoCD works?
- It follows the GitOps pattern by using Git repositories as the source of truth for the desired state of the app and the target deployment envs.
Kustomize applications
Helm Charts
Ksonnet applications Jsonnet files
YAML/JSON manifests
- It automates the synchronization of the desired application state with each of the specified target environments.
ArgoCD Concepts & Terminology
ArgoCD Features
- Automated deployment of applications to specified target environments in multiple clusters.
- Support for multiple config management/templating tools (Kustomize, Helm, Ksonnet, Jsonnet, plain-YAML).
- SSO Integrations (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 the Git repository.
- Health status analysis of application resources.
- Automated configuration drift detection and visualization.
- Out-of-the-box Prometheus metrics.
- Audit trails for application events and API Calls
- PreSync, Sync, and PostSync hooks to support complex application rollouts (e.g. blue/green & Canary upgrades).
- Webhook integration (GitHub, BitBucket, GitLab).
- CLI and access tokens for automation and CI integration.
- Web UI which provides a real-time view of application activity.
- Automated or manual syncing of applications to their desired state.
ArgoCD Architecture
Installation Options
ArgoCD has two types of installations.
Core
Multi-Tenant
ArgoCD Commands
argocd login ipaddress-argocd-server
argocd app list
argocd cluster list
ArgoCD Application
Creating application using the cli
Demo Application
ArgoCD CLIargocd app create application
argocd app list
argocd app sync application Name
argocd proj list
Reconciliation Loop
Using Timeout
The default timeout is 3 minutes
WebHook
Application Health Checks
ArgoCD supports custom health checks written in Lua.
Define a custom Health check in argocd-cm ConfigMap.
Contribute custom Health Checks.