GCE开香港区域方法:(本质上就是通过API方式)
手动在VPC网络里创建一个asia-east2地区的子网,定义一个内网IP段,名称随意(除default外),我这里取“helloworld”。
随后按照正常方法创建VM实例,配置好以后不要点创建,点击"等效 REST 或命令行" 中的 "命令行",点击在 Cloud Shell 中运行,会在你的Cloud Shell里粘贴类似下面的代码(不完全一样,请勿直接复制):
gcloud beta compute --project=proj-name instances create woomai-123 --zone=asia-east2-a --machine-type=f1-micro --subnet=helloworld --network-tier=PREMIUM --maintenance-policy=MIGRATE --service-account=214293171470-compute@developer.gserviceaccount.com --scopes=https://www.googleapis.com/auth/devstorage.read_only,https://www.googleapis.com/auth/logging.write,https://www.googleapis.com/auth/monitoring.write,https://www.googleapis.com/auth/servicecontrol,https://www.googleapis.com/auth/service.management.readonly,https://www.googleapis.com/auth/trace.append --image=debian-9-stretch-v20181011 --image-project=debian-cloud --boot-disk-size=10GB --boot-disk-type=pd-standard --boot-disk-device-name=woomai-123
注意subnet参数,更改为你创建的子网名称。
实测成功创建,感谢
@OxygenOS 大佬提供该方法。