在尝试开始任何新工作时突然得到这个:
2016-02-23T23:42:27.051Z: Error: (f2984821f598b8e3): Workflow failed. Causes: (175d43386b799a19): Unable to create VMs. Causes: (175d43386b7993ee): Error:
Message: Invalid value for field 'resource.networkInterfaces[0].network': 'https://www.googleapis.com/compute/v1/projects/link-staging-2/global/networks/default'. The specified network was not found.
HTTP Code: 400
现有的工作似乎停滞不前,没有处理任何事件,2%的CPU使用率,ssh超时到那些虚拟机。
失业的Jobid:2016-02-23_12_48_02-17525521157403139911
未能开始工作的Jobid:2016-02-23_15_42_20-9421118277209731100
答案 0 :(得分:4)
并非其他任何人都可能遇到此问题,但如果您这样做,那是因为有人删除了GCP中的默认网络。重新创建它。
gcloud compute networks create default
gcloud compute routes list
答案 1 :(得分:0)
您也可以尝试创建任何新网络,然后将实例附加到该网络。根据这一点的某些方面也可行:
gcloud compute networks create whatever
gcloud compute firewall-rules create default --network whatever --allow tcp:22,tcp:80,icmp
gcloud compute instances create test-network-example --zone us-central1-a --project $YourProject \
--image centos-7-v20160711 --image-project centos-cloud --network whatever