Error: Sole tenant instances must have at least 2 cores

Error: Sole tenant instances must have at least 2 cores

我最近在 运行 一个 gcloud 脚本在 GCE 上创建一个新实例成为实例组的一部分后开始出现这个错误。问题是它在过去有效,这是 Google 的政策变化吗?另外,命令的哪一部分暗示我要求单租户节点?有没有办法将其更改为共享实例? 这是我使用的命令行:

gcloud compute instances create callback-server ^
--image-family=debian-9 ^
--image-project=debian-cloud ^
--machine-type=g1-small ^
--zone=us-central1-f ^
--scopes=userinfo-email,cloud-platform ^
--metadata-from-file=startup-script=startup-script.sh ^
--tags=http-server,https-server ^
--node-group=callback-server-group

这是输出:

ERROR: (gcloud.compute.instances.create) Could not fetch resource:
 - Sole tenant instances must have at least 2 cores.

您即将通过 --node-group option. This option specifies the node group for sole tenant nodes。 (即,它不是托管实例组的同义词)

将实例添加到实例组: