Sha256: 6b03e7a3dbeb641bbb1d15ee5ec3e1baa513340b57477fc8a8ff4778f5a892ea

Contents?: true

Size: 1.07 KB

Versions: 5

Compression:

Stored size: 1.07 KB

Contents

# Multiple vApps can be defined. Running vcloud-launch will only instantiate
# vApps that do not already exist, so it is possible to add additional vApps
# to this configuration, and rerun the tool to add the new vApps.
#
# There is a lot of repetition however. YAML anchors can be used to 
# reduce this - see yaml_anchors_example.yaml for more details.
# 
---
vapps:

- name: vapp-example-1
  vdc_name: "Our VDC1"
  catalog: our-catalog
  catalog_item: our-vapp-template
  vm:
    hardware_config:
      memory: '4096'
      cpu: '2'
    network_connections:
    - name: Default
      ip_address: 192.0.2.11

- name: vapp-example-2
  vdc_name: "Our VDC1"
  catalog: our-catalog
  catalog_item: our-vapp-template
  vm:
    hardware_config:
      memory: '4096'
      cpu: '2'
    network_connections:
    - name: Default
      ip_address: 192.0.2.12

- name: vapp-example-3
  vdc_name: "Our VDC1"
  catalog: our-catalog
  catalog_item: our-vapp-template
  vm:
    hardware_config:
      memory: '4096'
      cpu: '2'
    network_connections:
    - name: Default
      ip_address: 192.0.2.13

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
vcloud-launcher-0.0.5 examples/vcloud-launch/multiple_vapps_simple.yaml
vcloud-launcher-0.0.4 examples/vcloud-launch/multiple_vapps_simple.yaml
vcloud-launcher-0.0.3 examples/vcloud-launch/multiple_vapps_simple.yaml
vcloud-launcher-0.0.2 examples/vcloud-launch/multiple_vapps_simple.yaml
vcloud-launcher-0.0.1 examples/vcloud-launch/multiple_vapps_simple.yaml