Skip to content
Michael O'Brien edited this page Nov 3, 2023 · 8 revisions

Board: https://github.com/GoogleCloudPlatform/pubsec-declarative-toolkit/labels/FinOps

core-landing-zone

  • contains the GKE cluster at $9-14/day
  • if VPC flow logs are on - look at an additional $8-15/day depending on when free tier/month kicks off for >.5 TB of storage

hub-env

  • with core-landing-zone above
  • contains 3 GCE VMs at $24/day
  • PAYG broken out is $50/day

Remaining Quotas

Quota for Compute VM and GPU

https://github.com/GoogleCloudPlatform/pubsec-declarative-toolkit/issues/590#issuecomment-1792643614

you can point DND to the jira above or copy/paste to them

print quota with (total - inuse)

michael@cloudshell:~/metrics (bigquery-ol)$ gcloud compute regions describe us-central1 --format=json | jq --raw-output ".quotas[]  | .metric , (.limit-.usage|tostring) "

....
NVIDIA_L4_GPUS
1
PREEMPTIBLE_NVIDIA_L4_GPUS
1
COMMITTED_NVIDIA_L4_GPUS
1


target a specific metric

michael@cloudshell:~/metrics (bigquery-ol)$ gcloud compute regions describe us-central1 --format=json | jq --raw-output ".quotas[] | select (.metric==\"COMMITTED_NVIDIA_L4_GPUS\") | .metric , (.limit-.usage|tostring) " 


COMMITTED_NVIDIA_L4_GPUS
1

Clone this wiki locally