【发布时间】:2020-06-24 05:46:01
【问题描述】:
我正在按照本教程在 GCP 上配置 Kubernetes。 https://cloud.google.com/kubernetes-engine/docs/tutorials/hello-app#clean-up
我按照此处的建议运行此命令来创建集群 - GKE: Insufficient regional quota to satisfy request: resource "IN_USE_ADDRESSES"
gcloud container clusters create name-cluster --num-nodes=2
当我使用gcloud compute instances list 列出节点时,我注意到我有超过 2 个节点!!为什么?
NAME LOCATION MASTER_VERSION MASTER_IP MACHINE_TYPE NODE_VERSION NUM_NODES STATUS
name-cluster europe-west4 1.14.10-gke.36 34.91.182.235 n1-standard-1 1.14.10-gke.36 6 <-- why not 2 RUNNING
gcloud compute instances list
gke-name-cluster-default-pool-6eb04e1c-8v7v europe-west4-a n1-standard-1 10.164.0.7 34.91.242.41 RUNNING
gke-name-cluster-default-pool-6eb04e1c-k2c7 europe-west4-a n1-standard-1 10.164.0.8 34.91.149.207 RUNNING
gke-name-cluster-default-pool-aa8d2ab0-9508 europe-west4-b n1-standard-1 10.164.0.11 34.91.209.197 RUNNING
gke-name-cluster-default-pool-aa8d2ab0-vpv2 europe-west4-b n1-standard-1 10.164.0.12 35.204.159.132 RUNNING
gke-name-cluster-default-pool-ae1131d2-9q50 europe-west4-c n1-standard-1 10.164.0.10 34.90.135.116 RUNNING
gke-name-cluster-default-pool-ae1131d2-l29c europe-west4-c n1-standard-1 10.164.0.9 34.91.4.206 RUNNING
【问题讨论】:
标签: google-cloud-platform google-kubernetes-engine