...

/

Rolling Back Failed Deployments

Rolling Back Failed Deployments

In this lesson, we will learn how to roll back the failed deployments.

Why to Roll Back?

Discovering a critical bug is probably the most common reason for a rollback. Still, there are others. For example, we might be in a situation when Pods cannot be created. An easy to reproduce case would be an attempt to deploy an image with a tag that does not exist.

Press + to interact
kubectl set image \
-f deploy/go-demo-2-api.yml \
api=vfarcic/go-demo-2:does-not-exist \
--record

The output is as follows.

Press + to interact
deployment "go-demo-2-api" image updated

After seeing such a message, you might be under the impression that everything is OK. However, that output only indicates that the definition of the image used in the Deployment was successfully updated. That does not mean that the Pods behind the ReplicaSet are indeed running. For one, I can assure you that the vfarcic/go-demo-2:does-not-exist image does not exist. ...

Access this course and 1400+ top-rated courses and projects.