argocd rollout basic setup
First we are going to need the following files and apply them apiVersion : v1 kind : Service metadata : name : rollouts-demo spec : ports : - port : 80 targetPort : http protocol : TCP name : http selector : app : rollouts-demo And this is the rollout file and notice the image we are using is ' blue ' apiVersion : argoproj.io/v1alpha1 kind : Rollout metadata : name : rollouts-demo spec : replicas : 5 strategy : canary : steps : - setWeight : 20 - pause : {} - setWeight : 40 - pause : {} - setWeight : 60 - pause : {} - setWeight : 80 - pause : {} revisionHistoryLimit : 2 selector : matchLabels : ...