PERMISSION_DENIED: Insufficient project quota to satisfy request: resource

9/5/2019

I am following a tutorial using an account with $300 credits so I am limited to what I can do generally but I would want to know what the contents of this error I get when trying to resize a node-pool or add another node-pool to my gcp project, here is the error message:

ERROR: (gcloud.container.clusters.resize) PERMISSION_DENIED: Insufficient project quota to satisfy request: resource "CPUS_ALL_REGIONS": request requires '9.0' and is short '3.0'. project has a quota of '12.0' with '6.0' available.

And for the creation command this is the error:

ERROR: (gcloud.container.node-pools.create) ResponseError: code=403, message= (1) insufficient regional quota to satisfy request: resource "CPUS": request requires '3.0' and is short '1.0'. project has a quota of '8.0' with '2.0' available.

The parts that interest me are:

  • insufficient project quota
  • request requires '9.0' and is short '3.0', and
  • project has a quota of '12.0' with '6.0' available

And the commands I am using are:

gcloud container clusters resize my-reginal-cluster --region us-central1 --node-pool default-pool --size 4

and

gcloud container node-pools create my-pool --num-nodes=1 --cluster my-reginal-cluster --region us-central1

-- George Udosen
gcloud
google-cloud-platform
google-kubernetes-engine

2 Answers

9/5/2019

For the first error i would suggest you to follow this Quota Increase documentation to request an increase in the quota. Otherwise delete unused resources or deploy a setup with less CPU requirements.

For the second error, insufficient regional quota meas that the region it's running short on resources. You must deploy a setup with less resources or in another region.

-- Chris32
Source: StackOverflow

12/8/2019

By default create cluster command tries to spin up 9 nodes (3 nodes in 3 availability zones) for the availability regions. You can limit the number of nodes by adding --num-nodes parameter in create cluster command.

-- user2047665
Source: StackOverflow