In the first few sections of this chapter, we created a container and deployed it to an Azure Container Instance. Let's now deploy this container to a Kubernetes cluster.
Creating a cluster can be done via the Azure CLI or an ARM template. For ease of demonstration, the Azure CLI is used.
First, a new resource group needs to be created to host the Azure Kubernetes cluster:
az group create --name mpn-rg-kubernetes --location westeurope
Now, we can create our Kubernetes cluster.