Container Engine暂时无法运行

时间:2017-08-29 16:14:04

标签: kubernetes google-compute-engine google-kubernetes-engine

我需要在我的K8S群集中添加一个新池,但是我收到错误(gcloud.container.node-pools.create) ResponseError: code=503, message=Container Engine is temporarily out of capacity in us-central1-c. Please try a different zone or try again later.

如果我尝试在其他区域中创建,例如us-central1-b,则会失败,因为我的K8S在us-central1-c上。

gcloud container node-pools create redis-pool \
  --cluster=my-kube-cluster \
  --image-type=COS \
  --machine-type=n1-highmem-2 \
  --node-labels=pool=redis \
  --zone=us-central1-c \
  --project=my-project-id \
  --num-nodes=1

如何解决? 此消息https://groups.google.com/forum/#!topic/gce-discussion/PAtGqxUiE0o是我找到的唯一报告,但没有回答。

1 个答案:

答案 0 :(得分:2)

Google容器引擎群集是区域资源。这意味着无法在不可用的区域(向下或超出容量)中创建或增长它们,如上面us-central1-c的情况。