如何创建在实例中创建空磁盘的实例模板?在创建实例模板时,似乎磁盘需要source属性。
- name: {{ TEMPLATE_NAME }}
type: compute.v1.instanceTemplate
properties:
properties:
machineType: {{ properties["machine_type"] }}
canIpForward: False
networkInterfaces:
- network: "projects/mapreng-1/global/networks/{{ VPC }}"
#No internet access if this is not specified
accessConfigs:
- name: External NAT
type: ONE_TO_ONE_NAT
disks:
- deviceName: boot
type: PERSISTENT
boot: true
autoDelete: true
initializeParams:
sourceImage: https://www.googleapis.com/compute/v1/projects/{{ PROJECT }}/global/images/{{ IMAGE }}
- deviceName: dev1
type: SCRATCH
autoDelete: true
initializeParams:
diskType: pd-ssd
diskSizeGb: 20
这在运行时失败"必须指定源图像"
答案 0 :(得分:0)
我认为实例模板的重点在于它们允许您轻松创建许多在使用磁盘映像启动时看起来都相同的计算机。您是如何考虑使用实际不启动的实例,因为它们没有磁盘上的操作系统?