Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to increase backend services quota in Google Cloud Platform?

I'm using Kubernetes and I'm trying to create an ingress resource. I create it using:

$ kubectl create -f my-ingress.yaml

I wait a while and a load balancer doesn't seem to be created. Running:

$ kubectl describe ing my-ingress

returns:

Events:
  FirstSeen LastSeen    Count   From                SubobjectPath   Reason      Message
  ───────── ────────    ─────   ────                ─────────────   ──────      ───────
  46s       46s     1   {loadbalancer-controller }          ADD     my-ingress
  23s       11s     2   {loadbalancer-controller }          GCE :Quota  googleapi: Error 403: Quota 'BACKEND_SERVICES' exceeded.  Limit: 3.0

Is there a way to increase the number of backend services that can be created?

like image 708
Johan Avatar asked Nov 17 '15 15:11

Johan


People also ask

Is it possible to increase the resources limits for GCP accounts?

Quotas protect the Google Cloud Community from unforeseen spikes in usage. However, as your usage of Google Cloud Platform increases, you can request an increase in your quota.

Is it possible to increase the quotas for your GCP account by raising a request to GCP support team?

Quotas protect the Google Cloud Community from unforeseen spikes in usage. However, as your usage of Google Cloud Platform increases, you can request an increase in your quota.


1 Answers

You need to increase the quota assigned for your project. Please see https://cloud.google.com/compute/docs/resource-quotas for the explanation of resource quotas, and follow the link on that page to check and/or request a quota increase.

like image 79
Yu-Ju Hong Avatar answered Sep 28 '22 08:09

Yu-Ju Hong