Class: Chef::Knife::VsphereVmPropertySet

Inherits:
BaseVsphereCommand show all
Defined in:
lib/chef/knife/vsphere_vm_property_set.rb

Instance Method Summary collapse

Methods inherited from BaseVsphereCommand

#choose_datastore, common_options, #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, #get_config, #get_path_to_object, #get_vm, #get_vms, #linux?, #password, #tcp_test_port, #tcp_test_port_vm, #traverse_folders_for_computeresources, #traverse_folders_for_dc, #traverse_folders_for_vm, #traverse_folders_for_vms, #vim_connection, #windows?

Methods inherited from Chef::Knife

#log_verbose?

Instance Method Details

#runObject



18
19
20
21
22
23
24
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
# File 'lib/chef/knife/vsphere_vm_property_set.rb', line 18

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
  folder = find_folder(get_config(:folder)) || dc.vmFolder

  vm = find_in_folder(folder, RbVmomi::VIM::VirtualMachine, vmname) || abort("VM #{vmname} not found")

  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