Search⌘ K
AI Features

Exploring Argo Rollouts Definitions

Explore how to work with Argo Rollouts definitions to implement progressive delivery in Kubernetes. Understand the use of Rollout, AnalysisTemplate, and Service resources within Helm templates, the canary and blue-green deployment strategies, and how to configure traffic routing using Istio's VirtualService. Gain insight into automating deployment processes and managing traffic shifts during rollouts.

We'll continue using the devops-toolkit application that we've used before.

Just like before, the entire application definition is in the helm directory. It contains the templates of all the definitions that we’ll need, as well as a few that we’ll ignore given that they're used in other examples. Everything directly related to Argo Rollouts is in the rollout.yaml file, so let's look at it first.

Note: While it might be easier to explore Argo Rollouts through “pure” Kubernetes YAML, we believe ...