Kubernetes is an open source container orchestration and management system originally built at Google. Kubernetes is a powerful tool and it can become quite complex. However, the basics are fairly simple to understand. To get to grips with Kubernetes, we will be deploying a single container into a local Kunbernetes system using Minikube. Minikube is a convenient way to explore the power of Kubernetes without building a complex cloud-based deployment.
Deploying a container to Kubernetes
Getting ready
For this recipe, we will need to install Minikube locally. Let's head over to the project's GitHub page at https://github.com/kubernetes/minikube/releases, to install the prerequisites and the appropriate build for our...