Hi CHUNSIK KIM,
Thank you for your question and for using Microsoft Q&A.
The Azure Pricing Calculator is an estimation tool and may not always reflect the latest VM SKUs immediately after they become available in Azure services. Newer VM generations, including v6 SKUs, can sometimes experience a delay before they are surfaced in the calculator catalog.
Additionally, SKU availability can vary based on factors such as:
- Regional availability of the VM SKU.
- Subscription eligibility and quota considerations.
- Capacity and inventory constraints within specific regions or availability zones.
To verify whether a specific v6 SKU is currently supported for AKS in your target region, you can use the following command: az aks list-vm-skus --location <location> --query "[].name" --output table
To include all regional SKUs, including those that may not currently be available to your subscription:
az aks list-vm-skus --location <location> --all --query "[].name" --output table
If the v6 SKU appears in the AKS-supported SKU list but is not available in the Azure Pricing Calculator, this is generally due to differences in catalog publication and update cycles between Azure services and the Pricing Calculator. References
Thanks & Regards,
Sujitha