AI Features

Deploying New Releases Using the Canary Strategy

Learn how to deploy a new release using the canary strategy.

Use Argo Rollouts

What we’ve done up to now is a bit boring. We haven’t yet seen any advantage to using Argo Rollouts. That’s about to change. We’ll deploy a second release, and that should kick off the canary deployment process.

Let’s go!

helm upgrade devops-toolkit helm \
--namespace devops-toolkit \
--reuse-values \
--set image.tag=2.9.9

Watch the rollouts

We changed the tag of the image to 2.9.9 while reusing all the other values.

Let’s watch ...