Complete the code to create an AKS cluster with the Azure CLI.
az aks create --resource-group myResourceGroup --name myAKSCluster --node-count [1] --enable-addons monitoring --generate-ssh-keysThe --node-count parameter sets the number of nodes in the AKS cluster. The minimum valid value is 1.
Complete the code to specify the Kubernetes version when creating the AKS cluster.
az aks create --resource-group myResourceGroup --name myAKSCluster --kubernetes-version [1] --node-count 2 --generate-ssh-keys
The --kubernetes-version parameter requires a valid version string like '1.25.6'. 'latest' or 'stable' are not accepted values.
Fix the error in the command to enable the HTTP application routing addon.
az aks create --resource-group myResourceGroup --name myAKSCluster --node-count 2 --enable-addons [1] --generate-ssh-keys
The correct addon name for HTTP application routing is http_application_routing with underscores.
Fill both blanks to create an AKS cluster with a specific VM size and enable monitoring addon.
az aks create --resource-group myResourceGroup --name myAKSCluster --node-vm-size [1] --enable-addons [2] --generate-ssh-keys
The --node-vm-size sets the VM size for nodes, and monitoring enables the monitoring addon.
Fill all three blanks to create an AKS cluster with 3 nodes, Kubernetes version 1.24.9, and enable HTTP application routing addon.
az aks create --resource-group myResourceGroup --name myAKSCluster --node-count [1] --kubernetes-version [2] --enable-addons [3] --generate-ssh-keys
Set node count to 3, Kubernetes version to 1.24.9, and enable the HTTP application routing addon with 'http_application_routing'.