Open
Description
SUMMARY
Allow a storage vmotion to modify the disk type. This would help alleviate fallout from the thicklazyzero bug.
ansible version: 2.9.18
ISSUE TYPE
Modify community.vmware.vmware_vmotion to accept a disk provisioning type of thin, thick, or thickeagerzeroed
COMPONENT NAME
vmware_vmotion.py
ADDITIONAL INFORMATION
It would be nice to be able to script changing thin disks to thick or vice versa after the fact using ansible instead of spawning off to a mess of powercli
- name: Perform storage vMotion of of virtual machine
community.vmware.vmware_vmotion:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
vm_name: 'vm_name_as_per_vcenter'
destination_datastore: 'destination_datastore_as_per_vcenter'
type: thickeagerzeroed
delegate_to: localhost