我需要在google云端shell中使用gcloud工具创建VM模板。每次在gcloud documentation中设置的选项太多了。我可以发出类似gcloud compute instance-templates create <template name> --config-options-file=<config options file name>
的内容吗?
答案 0 :(得分:2)
虽然我在官方documentation中找不到任何simailr到--config-file flag选项的'gcloud compute instance-templates create',但是有一种通过gcloud创建实例模板资源的替代方法。
可以将gcloud命令与Deployment Manager结合使用。这可用于部署资源,包括实例模板。
有关详细信息,请查看here,其中包含信息和快速入门,以熟悉创建部署以通过配置文件部署资源。
您将找到支持的资源类型here的列表。如您所见,compute.beta.instanceTemplate有一个选项。
我还为您的请求创建了一个功能请求(对于配置文件选项),您可以跟踪here的进度。