mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
766 B
19 lines
766 B
resources:
|
|
- type: compute.v1.instance
|
|
name: vm-created-by-cloud-config-{{ env["deployment"] }}
|
|
properties:
|
|
zone: {{ properties["zone"] }}
|
|
machineType: https://www.googleapis.com/compute/v1/projects/{{ env["project"] }}/zones/{{ properties["zone"] }}/machineTypes/f1-micro
|
|
disks:
|
|
- deviceName: boot
|
|
type: PERSISTENT
|
|
boot: true
|
|
autoDelete: true
|
|
initializeParams:
|
|
diskName: disk-created-by-cloud-config-{{ env["deployment"] }}-{{ env["name"] }}-{{ env["type"] }}
|
|
sourceImage: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-7-wheezy-v20140619
|
|
networkInterfaces:
|
|
- network: https://www.googleapis.com/compute/v1/projects/{{ env["project"] }}/global/networks/default
|
|
|
|
|