Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Persistent Disk quota exceeded

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:

  • 1x GKE Cluster in Autopilot mode with 2 namespaces
  • 1x Compute Instance with 10GB disk

Running out of ideas on what to check here 🤔

Appreciate any help or hints on what else to check for.

Solved Solved
0 1 110
1 ACCEPTED 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:

Screenshot 2025-04-17 21.44.10.png

 

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.

View solution in original post

1 REPLY 1

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:

Screenshot 2025-04-17 21.44.10.png

 

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.