Kubectl rollout


Here we can see the version 1,2,3 after three when executes the rollout undo it pick up the version 2 incase if i want to back with Revision would be possible to achieve that , Pls advise me

You can go back to revision 2 either with

kubectl rollout undo deploy myapp-deployment

or

kubectl rollout undo deploy myapp-deployment --revision 2

since you are currently at revision 3.