Argo CD
Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.
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
.
- Application A group of Kubernetes resources as defined by a manifest. This is a Custom Resource Definition (CRD).
- Application source type Which Tool is used to build the application.
- Target state The desired state of an application, as represented by files in a Git repository.
- Live state The live state of that application. What pods etc. are deployed.
- Sync status Whether the live state matches the target state. Is the deployed application the same as Git says it should be?
- Sync The process of making an application move to its target state. E.g. by applying changes to a Kubernetes cluster.
- Sync operation status Whether a sync succeeded.
- Refresh Compare the latest code in Git with the live state. Figure out what is different.
- Health The health of the application, is it running correctly? Can it serve requests?
- Tool A tool to create manifests from a directory of files. E.g.
Kustomize
. See Application Source Type. - Configuration management tool See Tool.
- Configuration management plugin A custom tool.
Tools
Argo CD supports several different ways in which Kubernetes manifests can be defined:
Kustomize
applications- Helm charts
- A directory of YAML/JSON/Jsonnet manifests, including Jsonnet.
- Any custom config management tool configured as a config management plugin
kustomize
Patches are a way to kustomize
resources using inline configurations in Argo CD applications.
Patches follow the same logic as the corresponding Kustomization
.
Any patches that target existing Kustomization
file will be merged.
helm
Helm is only used to inflate charts with helm template
. The lifecycle of the application is handled by Argo CD instead of Helm. Means syncing with ArgoCD can be end up something different from installing using helm install
.
Project
Projects provide a logical grouping of applications, which is useful when Argo CD is used by multiple teams. Projects provides the following features:
- restrict what may be deployed (trusted Git source repositories)
- restrict where apps may be deployed to (destination clusters and namespaces)
- restrict what kinds of objects may or may not be deployed (e.g. RBAC, CRDs, DaemonSets, NetworkPolicy etc.)
- defining project roles to provide application RBAC
Every application belongs to a single project. If unspecified, an application belongs to the default
project,
which is created automatically and by default, permits deployments from any source repo, to any cluster, and all
resource kinds.
Argo Workflows
Argo Workflows is an open source container-native workflow engine for orchestrating parallel jobs on Kubernetes. It is implemented as a Kubernetes CRD.
- Define workflows where each step in the workflow is a container.
- Model multistep workflows as a sequence of tasks or capture the dependencies between tasks using a graph (DAG).
- Easily run compute intensive jobs for machine learning or data processing in a fraction of the time using Argo Workflows on Kubernetes.
- Run CI/CD pipelines natively on Kubernetes without configuring complex software development products.
Hello World
Below, we run a container on a Kubernetes cluster using an Argo workflow template.
Argo adds a new kind of Kubernetes spec called a Workflow
.
The above spec contains a single template called whalesay
which runs the docker/whalesay
container and
invokes cowsay "hello world"
. The whalesay
template is the entrypoint
for the spec.
The entrypoint
specifies the initial template that should be invoked when the workflow spec is executed by Kubernetes.
Being able to specify the entrypoint
is more useful when there is more than one template defined in the Kubernetes workflow spec.
The Workflow
The Workflow is the most important resource in Argo and serves two important functions:
- It defines the workflow to be executed.
- It stores the state of the workflow.
Because of these dual responsibilities, a Workflow should be treated as a live object. It is not only a static definition, but is also an “instance” of said definition. (If it isn’t clear what this means, it will be explained below).
The workflow to be executed is defined in the Workflow.spec
field.
The core structure of a Workflow spec is a list of templates
and an entrypoint
.
templates
can be loosely thought of as “functions”: they define instructions to be executed.
The entrypoint
field defines what the “main” function will be – that is, the template that will be executed first.
template
Types
There are 6 types of templates, divided into two different categories.
These templates define work to be done, usually in a Container.
CONTAINER
Perhaps the most common template type, it will schedule a Container. The spec of the template is the same as the Kubernetes container spec, so you can define a container here the same way you do anywhere else in Kubernetes.
SCRIPT
A convenience wrapper around a container. The spec is the same as a container, but adds the source
field which allows you to define a script in-place. The script will be saved into a file and executed for you.
The result of the script is automatically exported into an Argo variable either {{tasks.<NAME>.outputs.result}}
or {{steps.<NAME>.outputs.result}}
, depending on how it was called.
RESOURCE
Performs operations on cluster Resources directly. It can be used to get, create, apply, delete, replace, or patch resources on your cluster.
Argo Events
Argo Events is an event-driven workflow automation framework for Kubernetes which helps you trigger K8s objects, Argo Workflows, Serverless workloads, etc. on events from a variety of sources like webhooks, S3, schedules, messaging queues, GCP PubSub, SNS, SQS, etc.
Architecture
Event Source
An Event Source defines the configurations required to consume events from external sources like AWS SNS, SQS, GCP PubSub, Webhooks, etc. It further transforms the events into the cloudevents and dispatches them over to the event bus.
Event Bus
The Event Bus acts as the transport layer of Argo-Events by connecting the Event Sources and Sensors.
Sensor
Sensor defines a set of event dependencies (inputs) and triggers (outputs). It listens to events on the event bus and acts as an event dependency manager to resolve and execute the triggers.
Trigger
A Trigger is the resource/workload executed by the sensor once the event dependencies are resolved.