Hey community,
I started encountering
Can’t create new resources when the quota is exceeded for any resources, such as CPU or Disk.
in my GKE Cluster.
Looking further at my quotas I noticed: Persistent Disk SSD (GB) shows 415/500
Which surprises me.
gcloud compute disks list
Shows 4 Disk, 3x 5GB (used in GKE) and 1x 10GB (used in GCE). I also went to check if there are any snapshots or backups taking space, but couldn't find any either.
My project setup is quite simple:
Running out of ideas on what to check here 🤔
Appreciate any help or hints on what else to check for.
Solved! Go to Solution.
Hi daniel_enaccess,
Welcome to Google Cloud Community!
When GKE Autopilot provisions a node, it also provisions a persistent disk for it. Those disks are different sizes depending on the node machine: 100GB, 250GB etc.
To check the capacity of the Node use the following command:
“Kubectl describe node <node name>”
You can find it under the Capacity field. Here is the sample output below:
For further insights on deploying Google Kubernetes Engine and enhance your understanding about GKE autopilot, Refer to this documentation below:
Was this helpful? If so, please accept this answer as “Solution”. If you need additional assistance, reply here within 2 business days and I’ll be happy to help.
Hi daniel_enaccess,
Welcome to Google Cloud Community!
When GKE Autopilot provisions a node, it also provisions a persistent disk for it. Those disks are different sizes depending on the node machine: 100GB, 250GB etc.
To check the capacity of the Node use the following command:
“Kubectl describe node <node name>”
You can find it under the Capacity field. Here is the sample output below:
For further insights on deploying Google Kubernetes Engine and enhance your understanding about GKE autopilot, Refer to this documentation below:
Was this helpful? If so, please accept this answer as “Solution”. If you need additional assistance, reply here within 2 business days and I’ll be happy to help.