Creating a Zero-Downtime Deployment
In this lesson, we will create a zero-downtime deployment using the file defined in the previous lesson.
Creating Deployment
Before we explore rolling updates, we should create the Deployment and, with it, the first release of our application.
Press + to interact
kubectl create \-f deploy/go-demo-2-api.yml \--recordkubectl get -f deploy/go-demo-2-api.yml
We created the Deployment and retrieved the object from the Kubernetes API server.
The output of the latter command is as follows.
Press + to interact
NAME DESIRED UP-TO-DATE AVAILABLE AGEgo-demo-2-api 3 3 3 1m
Please make sure that the number of available Pods is 3
. Wait for a few moments, if that’s not the case. Once all the Pods are up-and-running, we’ll have a Deployment that created a new ReplicaSet which, in turn, created three Pods based on the latest release of the ...
Access this course and 1400+ top-rated courses and projects.