With Minikube installed, it's time to set up and explore the Kubernetes environment in Azure:
- Create a cluster
- Find information about the cluster
- Deploy a simple workload
- The Kubernetes components behind the workload
With Minikube installed, it's time to set up and explore the Kubernetes environment in Azure:
In Kubernetes, you're going to work with clusters. A cluster contains a master or control plane that is in control of everything and one or more worker nodes. In Azure, you don't have to care about the master, only about the nodes.
It's a good idea to make a new resource group for the purposes of this chapter:
az group create --location westus --name MyKubernetes
In this resource group, we will deploy our cluster:
az aks create -...