Trying to create a Kubernetes Cluster using Terraform and azurerm provider . But while doing that I am getting the below error:
Error: creating Managed Kubernetes Cluster "k8stest_dev" (Resource Group "kubernetes_dev"): containerservice.ManagedClustersClient#CreateOrUpdate: Failure sending request: StatusCode=400 --
Original Error: Code="QuotaExceeded" Message="Provisioning of resource(s) for container service k8stest_dev in resource group kubernetes_dev failed.
Message: Operation could not be completed as it results in exceeding approved standardDSv3Family Cores quota. Additional details - Deployment Model: Resource Manager, Location: centralus, Current Limit: 4, Current Usage: 0, Additional Required: 6, (Minimum) New Limit Required: 6.
Submit a request for Quota increase
CodePudding user response:
The issue is that you are using standardDSv3
family and you have 4 cores available for that family in the region you are trying to deploy.
So, For solution , you will need to raise a quota request or try creating some other family vm's with less core .
Reference:
You can refer this Microsoft Documentation to know about how to raise quota increase .
You can refer this Microsoft Documentation for the available VM Sizes.