Google云:使用空磁盘创建实例模板

时间:2017-10-18 20:20:56

标签: google-cloud-platform

如何创建在实例中创建空磁盘的实例模板?在创建实例模板时,似乎磁盘需要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

这在运行时失败"必须指定源图像"

1 个答案:

答案 0 :(得分:0)

我认为实例模板的重点在于它们允许您轻松创建许多在使用磁盘映像启动时看起来都相同的计算机。您是如何考虑使用实际不启动的实例,因为它们没有磁盘上的操作系统?