Hello everyone,
I just attempted the Nautilus DevOps task to prepare an AKS cluster, but my validation failed with the following message:
"AKS cluster 'devops-aks' is not in a running state. You may check your work again to see what went wrong."
Here were my task requirements:
Cluster Name: devops-aks
Kubernetes Version: 1.36.x
Location: Central US
Network Access: Private
Node pool size: Standard_D2s_v3 with Min: 1, Max: 2
Container Insights / Monitoring: Disabled
Here is the exact Azure CLI command I used in the Cloud Shell:
Bash
RESOURCE_GROUP=$(az group list --query “[0].name” -o tsv)
az aks create
–resource-group “$RESOURCE_GROUP”
–name devops-aks
–location centralus
–kubernetes-version 1.36.2
–enable-private-cluster
–nodepool-name agentpool
–node-vm-size Standard_D2s_v3
–enable-cluster-autoscaler
–min-count 1
–max-count 2
–node-count 1
–generate-ssh-keys
The terminal completed the command and returned the large JSON success block, but the validation still failed.
My Questions:
Did I miss a flag in my CLI command to disable monitoring completely?
Is it possible I just clicked the "Check" button too early before the nodes finished provisioning?
Was there a known capacity issue for D2s_v3 VMs in centralus today?
(I have attached my screenshots of the terminal output below).
Thank you in advance for the help!