我有在 Google Cloud Platform 上建立和拆除集群的脚本。在多次运行这些脚本且没有出现错误后,我现在无法运行该脚本来建立集群,并收到消息“区域配额不足以满足资源请求:‘CPUS’。请求需要‘4.0’,但缺少‘12.0’。区域配额为‘8.0’,可用‘-8.0’。”我在控制台中看不到任何可能尚未删除的剩余虚拟机。有没有地方可以查看我的配额以及从该配额中扣除的虚拟机?或者除了虚拟机之外,还有其他一些资源被标识为“CPUS”?脚本中导致错误的行是:
$ gcloud container clusters create "server-cluster" \
--machine-type "n1-standard-1" \
--scope "https://www.googleapis.com/auth/compute","https://www.googleapis.com/auth/devstorage.read_only","https://www.googleapis.com/auth/logging.write","https://www.googleapis.com/auth/monitoring" \
--num-nodes "4" \
--network $NETWORK \
--enable-cloud-logging \
--enable-cloud-monitoring