Defining a Zero-Downtime Deployment
In this lesson, we will look into the definition of a zero-downtime deployment.
Updating a single-replica MongoDB cannot demonstrate true power behind Deployments. We need a scalable service. It’s not that MongoDB cannot be scaled (it can), but it is not as straight-forward as an application that was designed to be scalable. We’ll jump to the second application in the stack and create a Deployment of the ReplicaSet that will create Pods based on the vfarcic/go-demo-2
image.
Zero-downtime deployment is a prerequisite for higher frequency releases.
Looking into the Definition
Let’s take a look at the Deployment definition of the API.
cat deploy/go-demo-2-api.yml
The output is as follows.
apiVersion: apps/v1beta2kind: Deploymentmetadata:name: go-demo-2-apispec:replicas: 3selector:matchLabels:type: apiservice: go-demo-2minReadySeconds: 1progressDeadlineSeconds: 60revisionHistoryLimit: 5strategy:type: RollingUpdaterollingUpdate:maxSurge: 1maxUnavailable: 1template:metadata:labels:type: apiservice: go-demo-2language: gospec:containers:- name: apiimage: vfarcic/go-demo-2env:- name: DBvalue: go-demo-2-dbreadinessProbe:httpGet:path: /demo/helloport: 8080periodSeconds: 1livenessProbe:httpGet:path: /demo/helloport: 8080
We’ll skip explaining apiVersion
, kind
, and metadata
, since they always follow the same pattern.
-
Line 5-7: The
spec
section has a few of the fields we haven’t seen before, and a few of those we are familiar with. Thereplicas
and theselector
are the same as what we used in the ReplicaSet from the previous chapter. -
Line 11:
minReadySeconds
defines the minimum number of seconds before Kubernetes starts considering the Pods healthy. We put the value of this field to1
second. The default value is ...