Docker containers are pretty easy and powerful, as we saw from the previous recipe; however, without a strong container orchestration system, managing containers can become pretty intensive. Kubernetes (also written as K8s) is an open source container orchestration system that automates the management, deployment, and scaling of containerized applications. It was originally developed at Google and, over the years, has become the most popular container orchestration software. It is widely available across all major cloud providers.
Orchestrating containers with Kubernetes
Getting ready
In this recipe, we will see how we can leverage Kubernetes to automate the deployment and scaling of our application container, which we created...