0
0
Azurecloud~10 mins

Why managed Kubernetes matters in Azure - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a managed Kubernetes cluster in Azure.

Azure
az aks create --resource-group myResourceGroup --name myAKSCluster --node-count [1] --enable-addons monitoring --generate-ssh-keys
Drag options to blanks, or click blank then click option'
A3
B0
Cone
D-1
Attempts:
3 left
💡 Hint
Common Mistakes
Using zero or negative numbers for node count
Using words instead of numbers
2fill in blank
medium

Complete the command to get credentials for your AKS cluster.

Azure
az aks get-credentials --resource-group myResourceGroup --name [1]
Drag options to blanks, or click blank then click option'
AmyAKSCluster
BmyResourceGroup
Cdefault
Dcluster1
Attempts:
3 left
💡 Hint
Common Mistakes
Using the resource group name instead of cluster name
Using default or unrelated names
3fill in blank
hard

Fix the error in the command to scale the AKS cluster nodes.

Azure
az aks scale --resource-group myResourceGroup --name myAKSCluster --node-count [1]
Drag options to blanks, or click blank then click option'
A-3
Bzero
C5
Dten
Attempts:
3 left
💡 Hint
Common Mistakes
Using zero or negative numbers
Using words instead of numbers
4fill in blank
hard

Fill both blanks to enable the HTTP application routing addon.

Azure
az aks enable-addons --resource-group myResourceGroup --name myAKSCluster --addons [1] --app-routing-dns-name [2]
Drag options to blanks, or click blank then click option'
Ahttp_application_routing
Bmonitoring
Cmyapp.example.com
Ddefaultdns
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong addon names
Using generic DNS names
5fill in blank
hard

Fill all three blanks to create a node pool with spot instances.

Azure
az aks nodepool add --resource-group myResourceGroup --cluster-name myAKSCluster --name [1] --priority [2] --spot-max-price [3]
Drag options to blanks, or click blank then click option'
Aspotpool
BSpot
C-1
DRegular
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong priority values
Using positive numbers for max price