2017-10-18 85 views
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 

這種失敗在與「源圖像必須被指定」

回答

0

我想的實例模板的一點是,他們讓你輕鬆地創造出許多的機器,看起來都一樣,當他們啓動通過使用運行時磁盤映像。您是如何考慮使用實際上不啓動的實例,因爲它們沒有磁盤上的操作系統?

+0

不是啓動盤。引導磁盤我將在上面的示例中指定。這是我想添加到我的機器上的其他磁盤 - 例如設備dev1在我上面的例子中。 – Neel

+0

那麼你可以用新磁盤創建一個實例,從中獲取圖像,然後將其添加到此模板中? –

相關問題