Class: Chef::Knife::VsphereVmPropertySet
- Inherits:
-
BaseVsphereCommand
- Object
- Bootstrap
- BaseVsphereCommand
- Chef::Knife::VsphereVmPropertySet
- Defined in:
- lib/chef/knife/vsphere_vm_property_set.rb
Overview
VsphereVMPropertySet extends Basevspherecommand
Instance Method Summary collapse
-
#run ⇒ Object
The main run method for vm_property_set.
Methods inherited from BaseVsphereCommand
#choose_datastore, common_options, #conn_opts, #datacenter, #fatal_exit, #find_all_in_folder, #find_datastore, #find_datastorecluster, #find_datastores_regex, #find_device, #find_folder, #find_in_folder, #find_network, #find_pool, #find_pool_folder, #find_pools_and_clusters, #get_config, #get_password_from_stdin, #get_path_to_object, #linux?, #number_to_human_size, #password, #tcp_test_port, #tcp_test_port_vm, #traverse_folders_for_computeresources, #traverse_folders_for_dc, #traverse_folders_for_pools, #vim_connection, #windows?
Instance Method Details
#run ⇒ Object
The main run method for vm_property_set
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/chef/knife/vsphere_vm_property_set.rb', line 25 def run $stdout.sync = true vmname = @name_args[0] if vmname.nil? show_usage fatal_exit("You must specify a virtual machine name") end property_name = @name_args[1] if property_name.nil? show_usage fatal_exit("You must specify a PROPERTY name (e.g. annotation)") end property_name = property_name.to_sym property_value = @name_args[2] if property_value.nil? show_usage fatal_exit("You must specify a PROPERTY value") end vim_connection dc = datacenter vm = get_vm_by_name(vmname, get_config(:folder)) || fatal_exit("Could not find #{vmname}") if vm.config.vAppConfig && vm.config.vAppConfig.property existing_property = vm.config.vAppConfig.property.find { |p| p.props[:id] == property_name.to_s } end if existing_property operation = "edit" property_key = existing_property.props[:key] else operation = "add" property_key = property_name.object_id end vm_config_spec = RbVmomi::VIM.VirtualMachineConfigSpec( vAppConfig: RbVmomi::VIM.VmConfigSpec( property: [ RbVmomi::VIM.VAppPropertySpec( operation: operation, info: { key: property_key, id: property_name.to_s, type: "string", userConfigurable: true, value: property_value, } ), ] ) ) unless config[:ovf_environment_transport].nil? transport = config[:ovf_environment_transport].split(",") transport = [""] if transport == [] ## because "".split returns [] and vmware wants [""] vm_config_spec[:vAppConfig][:ovfEnvironmentTransport] = transport end vm.ReconfigVM_Task(spec: vm_config_spec).wait_for_completion end |