September 2019
Intermediate to advanced
668 pages
15h 59m
English
The file structure for the Kubernetes definition files in kubernetes/services has been expanded a bit since Chapter 16, Deploying Our Microservices to Kubernetes (refer to the Introduction to Kustomize section) and this now appears as follows:

The base folder consists of three subfolders. The reason for this is that we will run two versions of the microservices concurrently in the Performing zero downtime deploys section, that is, one pod per microservice version. Since pods are managed by the deployment object, we also need two deployment objects per microservice. To be able to ...