argocd bluegreen deployment example
To deploy blue green, we start off with deploying the following yaml. As you may have notice, we have 2 services here which we will create next apiVersion : argoproj.io/v1alpha1 kind : Rollout metadata : name : labels : app : bluegreen-demo spec : replicas : 3 revisionHistoryLimit : 1 selector : matchLabels : app : bluegreen-demo template : metadata : labels : app : bluegreen-demo spec : containers : - name : bluegreen-demo image : argoproj/rollouts-demo:blue imagePullPolicy : Always ports : - name : http containerPort : 8080 protocol : TCP resources :...