Deploying containers to AKS
Before we start deploying the actual AKS resources, we need that place for our cluster to live again. Let’s create a resource group using the following command:
az group create ` --name rg-aks ` --location westeurope
Once the resource group is created, we should see similar output to that shown in Figure 6.2, stating that the provisioning of our resource group succeeded.
Figure 6.2 – Resource group creation
Now that we have verified that the resource group is there, let’s create an AKS cluster! For this, we will be using only a few parameters. However, please note that when you want to add more features and go all out, the set of parameters may grow significantly:
az aks create ` --location westeurope ` --resource-group rg-aks ` --name aks ` --generate-ssh-keys
This command will create an AKS cluster in the westeurope
region in your designated resource group. The cluster...