Kubernetes architecture – Container Orchestration with Kubernetes-2
Well, that’s a lot of moving parts, but the good news is that tools are available to set that up for you, and provisioning a Kubernetes cluster is very simple.…
Well, that’s a lot of moving parts, but the good news is that tools are available to set that up for you, and provisioning a Kubernetes cluster is very simple.…
Kubernetes is made of a cluster of nodes. There are two possible roles for nodes in Kubernetes – control plane nodes and worker nodes. The control plane nodes control the…
Kubernetes solves these problems by providing HA, scalability, and zero downtime out of the box. It essentially performs the following functions to provide them: between containers through a domain name.…
By now, you should understand what containers are and how to build and run containers using Docker. However, how we ran containers using Docker was not optimal from a production…
In the previous chapter, we covered creating and managing container images, where we discussed container images, Dockerfiles, and their directives and components. We also looked at the best practices for…
In this chapter, we have covered a lot of ground. At this point, you should understand Docker from a hands-on perspective. We started with Docker images, how to use a…
Apart from running your registry in a dedicated Docker server, other cloud and on-premises options exist. Most public cloud providers offer paid online registries and container-hosting solutions that you can…
And that’s it! It is as simple as that! There are other considerations as well since this is too simplistic. You will also have to mount volumes; otherwise, you will…
A Docker registry is a stateless, highly scalable server-side application that stores and lets you distribute Docker images. The registry is open source under the permissive Apache license. It is…