Sha256: bfaef84f3cba4bd5c3edc27c67db9ce733f1811c479952b1acf0fc09ea37e890
Contents?: true
Size: 783 Bytes
Versions: 1
Compression:
Stored size: 783 Bytes
Contents
module VmShepherd module Vcloud class Deployer def self.deploy_and_power_on_vapp(client:, ovf_dir:, vapp_config:, vdc_name:) catalog = client.create_catalog(vapp_config.catalog) # upload template and instantiate vapp catalog.upload_vapp_template(vdc_name, vapp_config.name, ovf_dir) # instantiate template network_config = VCloudSdk::NetworkConfig.new(vapp_config.network, 'Network 1') vapp = catalog.instantiate_vapp_template(vapp_config.name, vdc_name, vapp_config.name, nil, nil, network_config) # reconfigure vm vm = vapp.find_vm_by_name(vapp_config.name) vm.product_section_properties = vapp_config.build_properties # power on vapp vapp.power_on end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vm_shepherd-1.11.0 | lib/vm_shepherd/vcloud/deployer.rb |