Introducing how Kubernetes will be used
Later on in the chapter, we will see in detail how various Kubernetes objects are used to deploy the microservices and the resource managers they depend on, such as databases and queue managers. Before delving into all the details, let’s get an overview of the Kubernetes objects that will be used:
- For each microservice, database, and queue manager that will be deployed in Kubernetes, one Deployment object and one Service object will be created. For all components, except for the edge server named
gateway
, the Service object will be of theClusterIP
type. For the gateway, the Service object will be of theNodePort
type, accepting external HTTPS requests on port30433
. - The config server will use a ConfigMap, containing the configuration files in
config-repo
. - To hold credentials for the config server and its clients, two Secrets will be created: one for the config server and one for its clients.
Now that we...