more cicd systems

cutting through more marketing crap

SEAN K.H. LIAO

more cicd systems

cutting through more marketing crap

ci/cd

The landscape shows more projects, time to read through all their marketing crap (again), and find new toys to play with.

argo

You could build a full ci/cd pipeline from all this: Argo Events to trigger builds in Argo Workflows, Argo Workflows updating a shared manifest, Argo CD triggering new deployments, new deployments go through Argo Rollouts.

Workflows is very barebones when it comes to CI though, really is generic workflow thing.

workflows

argo workflows

A DAG of steps (k8s pods?) triggered by cli

cd

argo cd

Reconcile git repo state of manifests with cluster state.

rollouts

argo rollouts

Replace deployment resource with rollout resource. Will do canary / blue-green on new versions

events

argo events

Takes / listens for events, triggers requests / workflows / rollouts

buildkite

buildkite

Managed control plane + self hosted runners (an executable you run). Parallel by default, allows manual input step, steps are just scripts/commands you run, no isolation from host.

drone

drone

Self hosted control plane + runners (ex a docker image). Each step is a docker container / k8s pod / local exec / ssh session. Volumes keep state between each step.

flagger

flagger

Controller for adding a canary phase between deployment rollouts. Add canary resource specifying a deployment, and new changes to the deployment will go through canary stages first before being promoted.

flux

flux cd

Operator for reconciling a declaritive k8s state in a repo with actual state. Can auto update images based on registry metadata (and sync back repo state).

flux toolkit

toolkit aka flux v2

Set of controllers that watch repositories for changes and reconcile state with helm / kustomize

gocd

gocd

Self hosted control plane + runners. Nothing too interesting(?)

spinnaker

spinnaker

Looks like a very complex, UI centered way of managing deployments.

keptn

keptn

Maybe it's something like flagger but manages more of the lifecycle and provides automated actions such as rollbacks? Architecture looks overly complex, docs aren't clear especially on the triggers for deployment, uses mongodb.

tekton

tekton

Similar in scope to Argo Workflows + Events, Pipelines are generic DAG workflows, Triggers trigger Pipelines.