Rolling the First Release Forward
Learn how to use Argo Rollouts for rolling forward the release.
We'll cover the following...
Roll forward the release
We can see that Argo Rollouts changed the weight
of each of the destinations. It set the main destination (the one associated with the old release) to 80
percent, and the canary (the one associated with the new release) to 20
percent.
As we commented before, the process then paused, waiting for us to promote it to the next step. Let’s roll forward the release.
Press + to interact
kubectl argo rollouts \--namespace devops-toolkit \promote devops-toolkit-devops-toolkit
Just as before, we can watch the rollout
to observe what’s going on. ...