Hi Marco Nash,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
I understand that you are facing some issues during the creation.
A part of the question from my colleague, can you try the following?
- Check the Quotas/Limits under your subscription level
- Check SKU size you are trying to create
- Change the Region if possible
- Try from Azure Portal the creation of this AKS Cluster and let me know the outcome? Details here.
From AZ CLI, try the following, but as I said before, please double check your Quota for Regions+SKU sizes.
Also let's Enable the AutoScaler, after AKS creation.
# Variables
RESOURCE_GROUP="myResourceGroup"
CLUSTER_NAME="myAKSCluster"
LOCATION="eastus"
NODE_VM_SIZE="Standard_D5_v2" ####the size here it's just a example, change it for what you want
# Create a resource group
az group create --name $RESOURCE_GROUP --location $LOCATION
# Create the AKS cluster
az aks create \
--resource-group $RESOURCE_GROUP \
--name $CLUSTER_NAME \
--node-vm-size $NODE_VM_SIZE \
--node-count 3 \
--enable-addons monitoring \
--generate-ssh-keys
More details about Lmitations/Quotas
https://learn.microsoft.com/en-us/azure/aks/quotas-skus-regions
If any of the options above works, please open a ticket for ou AKS team using Azure Portal.
Anyway I will be more than happy to help you, if you reply here too.
Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.
If you have any other questions or are still running into more issues, let me know in the "comments" and I would be happy to help you.
Thank You.
Lisboa