Mariusz Szymoniak
Mariusz Szymoniak

Reputation: 61

Google Cloud SSD Usage is being used with no VMs, disks or deployments, preventing starting new instances

My quita says I am using 400 out of 500 of GB of Persistent SSD volume inus-west-1 region, which prevents me from starting a GPU instance which requires 200G of space.

enter image description here

However, I have no instances running, no deployments and do no disks so I ave no idea where this usage is coming from. I did try to start a couple of GPU VM instances before but they did not go through because of resource availability, not sure if this coudld be the reason and somehow they are using this space, but not showing up anywhere in the instance window: enter image description here

enter image description here

enter image description here

When I refresh VM instances, I get these failed VM instances (no resources were available) that just keep spinning under In use by and I can't delete them

enter image description here

Upvotes: 0

Views: 37

Answers (1)

x-zone-cat
x-zone-cat

Reputation: 552

You can do verification and review as explained below :

You may do a disk gcloud command via cloud console on your project to list compute disks as follows:

gcloud compute disks list

You may also try to run a logging query to verify create or delete or disks as follows

Disk Created

resource.type="gce_disk"
protoPayload.methodName:"compute.disks.insert"
log_id("cloudaudit.googleapis.com/activity")

Disk Deleted

resource.type="gce_disk"
protoPayload.methodName:"compute.disks.delete"
log_id("cloudaudit.googleapis.com/activity")

Upvotes: 0

Related Questions