Puppet Function: patching::snapshot_vmware
- Defined in:
- lib/puppet/functions/patching/snapshot_vmware.rb
- Function type:
- Ruby 4.x API
Overview
Creates/deletes snapshots on VMs using the VMware vSphere API.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
# File 'lib/puppet/functions/patching/snapshot_vmware.rb', line 4 Puppet::Functions.create_function(:'patching::snapshot_vmware') do # @param vm_names Array of VM names to create/delete snapshots on # @param snapshot_name Name of the snapshot to create/delete # @param vsphere_host Hostname/IP of the vSphere server # @param vsphere_username Username to use for authenticating to vSphere # @param vsphere_password Password to use for authenticating to vSphere # @param vsphere_datacenter Datacenter in the vSphere to use when search for VMs # @param vsphere_insecure Flag to enable HTTPS without SSL verification # @param snapshot_description Description of the snapshot, when creating. # @param snapshot_memory Snapshot the VMs memory, when creating. # @param snapshot_quiesce Quiesce/flush the VMs filesystem when creating the snapshot # @param action Action to perform on the snapshot, 'create' or 'delete' # @return Results from the snapshot create/delete tasks dispatch :snapshot_vmware do required_param 'Array', :vm_names required_param 'String', :snapshot_name required_param 'String', :vsphere_host required_param 'String', :vsphere_username required_param 'String', :vsphere_password required_param 'String', :vsphere_datacenter optional_param 'Boolean', :vsphere_insecure optional_param 'String', :snapshot_description optional_param 'Boolean', :snapshot_memory optional_param 'Boolean', :snapshot_quiesce optional_param 'String', :action return_type 'Array' end def snapshot_vmware(vm_names, snapshot_name, vsphere_host, vsphere_username, vsphere_password, vsphere_datacenter, vsphere_insecure = true, snapshot_description = nil, snapshot_memory = false, snapshot_quiesce = false, action = 'create') # Check to make sure a valid action was chosen available_actions = ['create', 'delete'] unless available_actions.include? action raise "#{action} is an invalid action. Please choose from create or delete" end # Compose vsphere credentials credentials = { host: vsphere_host, user: vsphere_username, password: vsphere_password, insecure: vsphere_insecure, } # Establish a connection to vsphere vim = RbVmomi::VIM.connect credentials # Get the vsphere Datacenter that we are interested in dc = vim.serviceInstance.find_datacenter(vsphere_datacenter) unless dc raise "Could not find datacenter with name: #{vsphere_datacenter}" end # Get all the VMs in the datacenter view_hash = { container: dc.vmFolder, type: ['VirtualMachine'], recursive: true, } all_vms = vim.serviceContent.viewManager.CreateContainerView(view_hash).view # Create a snapshot for each VM snapshot_error = [] snapshot_tasks = [] vm_names.each do |vm_name| snapshot_error_hash = { 'name' => vm_name, 'status' => false } begin task_return = nil if action == 'create' task_return = create_snapshot_on_vm(all_vms, vm_name, snapshot_name, snapshot_description, snapshot_memory, snapshot_quiesce) elsif action == 'delete' task_return = delete_snapshot_from_vm(all_vms, vm_name, snapshot_name) end if task_return snapshot_tasks.push(task_return) else snapshot_error_hash['details'] = 'Could not find vm' end rescue => err snapshot_error_hash['details'] = err end if snapshot_error_hash.key?('details') snapshot_error.push(snapshot_error_hash) end end # Wait for all snap shot tasks to finish completion_errors = wait_for_completion(snapshot_tasks) # Combine any errors that are present vmware_error_return = combine_errors(snapshot_error + completion_errors) # Return all errors vmware_error_return end def combine_errors(error_list) # Combine error lists. If there are multiple errors we will # combine the details information error_return = [] error_list.each do |error| # Check if error_return already has the vm in it. error_item = error_return.select { |h| h['name'] == error['name'] } # If it does combine the details if !error_item.empty? error_item = error_item[0] error_item['details'] = "#{error_item['details']}, #{error['details']}" error_return.map! { |e| (e['name'] == error['name']) ? error_item : e } else # Otherwise add to the return error_return.push(error) end end error_return end def create_snapshot_on_vm(all_vms, vm_name, snapshot_name, snapshot_description, snapshot_memory, snapshot_quiesce) # Find the VM and create the snapshot. Wait for the snapshot to be created. return_value = false all_vms.each do |vm| next unless vm.name == vm_name if vm.snapshot snapshots = find_snapshot(vm.snapshot.rootSnapshotList, snapshot_name) if snapshots.length == 1 delete_snapshot_from_vm(all_vms, vm_name, snapshot_name) elsif snapshots.length > 1 raise "There are #{snapshots.length} snapshots with the name #{snapshot_name} please remediate this or choose a different name before continuing" end end begin # Create the Snapshot snapshot_task = vm.CreateSnapshot_Task(name: snapshot_name, description: snapshot_description, memory: snapshot_memory, quiesce: snapshot_quiesce) return_value = snapshot_task break rescue => err raise "Creating snapshot failed with error: #{err}" end end return_value end def delete_snapshot_from_vm(all_vms, vm_name, snapshot_name) # Find the VM and delete the snapshot. Wait for the snapshot delete to finish before continuing return_value = false all_vms.each do |vm| next unless vm.name == vm_name # If the VM doesn't have snapshots then exit unless vm.snapshot return_value = true break end # Find the snapshot to delete snapshots = find_snapshot(vm.snapshot.rootSnapshotList, snapshot_name) if snapshots.empty? return_value = true break end # Delete the last Snapshot begin snapshot_task = snapshots[-1].RemoveSnapshot_Task(removeChildren: false) return_value = snapshot_task break rescue => err raise "Deleting snapshot failed with error: #{err}" end end return_value end def find_snapshot(snapshot_list, snapshot_name) # Find snapshot by name from the list of snapshots on the VM snapshot_return = [] snapshot_list.each do |vm_snapshot| if vm_snapshot.name == snapshot_name snapshot_return.push(vm_snapshot.snapshot) end unless vm_snapshot.childSnapshotList.empty? # If snapshot has child snapshots then search those also snapshot_return += find_snapshot(vm_snapshot.childSnapshotList, snapshot_name) end end snapshot_return end def wait_for_completion(snapshot_task_list) # Make sure all snapshot tasks have been completed completion_errors = [] snapshot_task_list.each do |snapshot_task| next unless snapshot_task.is_a?(RbVmomi::VIM::Task) begin snapshot_task.wait_for_completion rescue => err completion_errors_hash = { 'name' => snapshot_task.info.entity.name, 'status' => false, 'details' => err, } completion_errors.push(completion_errors_hash) end end completion_errors end end |