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.
20 lines
685 B
20 lines
685 B
resources:
|
|
{% for name in ['name1', 'name2'] %}
|
|
- type: compute.v1.instance
|
|
name: {{ name }}
|
|
properties:
|
|
zone: test-zone
|
|
machineType: https://www.googleapis.com/compute/v1/projects/test-project/zones/test-zone/machineTypes/f1-micro
|
|
disks:
|
|
- deviceName: boot
|
|
type: PERSISTENT
|
|
boot: true
|
|
autoDelete: true
|
|
initializeParams:
|
|
diskName: disk-created-by-cloud-config-test-deployment
|
|
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/test-project/global/networks/default
|
|
{% endfor %}
|
|
|