Skip to content

Creating Kubernetes Cluster - Part 3.1 #166

@KareimGazer

Description

@KareimGazer

Running the command

gcloud container clusters create dwk-cluster --zone=me-west1 --cluster-version=1.29

to create the cluster results in Insufficient Quota for SSD Storage Error

Note: The Kubelet readonly port (10255) is now deprecated. Please update your workloads to use the recommended alternatives. See https://cloud.google.com/kubernetes-engine/docs/how-to/disable-kubelet-readonly-port for ways to check usage and for migration instructions.
Note: Your Pod address range (--cluster-ipv4-cidr) can accommodate at most 1008 node(s).
ERROR: (gcloud.container.clusters.create) ResponseError: code=403, message=Insufficient regional quota to satisfy request: resource "SSD_TOTAL_GB": request requires '900.0' and is short '400.0'. project has a quota of '500.0' with '500.0' available. View and manage quotas at https://console.cloud.google.com/iam-admin/quotas?

it's better to specify the Node Disk Size to a smaller SSD disk size per node and the number of nodes so as not to exceed the default storage quota of 500GB of SSD storage in the selected region

gcloud container clusters create dwk-cluster --zone=me-west1-a --cluster-version=1.29 --disk-size=32 --num-nodes=3 --machine-type=e2-micro

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions