0
如何創建將在實例中創建空磁盤的實例模板?在創建實例模板時,似乎磁盤屬性是磁盤所必需的。Google雲:使用空磁盤創建實例模板
- 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
這種失敗在與「源圖像必須被指定」
不是啓動盤。引導磁盤我將在上面的示例中指定。這是我想添加到我的機器上的其他磁盤 - 例如設備dev1在我上面的例子中。 – Neel
那麼你可以用新磁盤創建一個實例,從中獲取圖像,然後將其添加到此模板中? –