Open jcarter12 opened 4 years ago
This issue has been automatically marked as stale because it has not been updated for at least 3 months.
If you can still reproduce this issue on the current release or on master
, please reply with all of the information you have about it in order to keep the issue open.
Thank you for all your contributions! More information about the ManageIQ triage process can be found in the traige process documentation.
What is the nature and description of the request? User implementing a use case in my Cloudforms instance to add new disks by automation task. The add_disk method return boolean value , and user would need return with the create storage information.
code used for the implementation is the following :
size=40 @vm=$evm.vmdb(:vm).find_by_name('CMP1KDTCAPP229') disks=@vm.hardware.disks result = @vm.add_disk("[#{@vm.storage_name}]", size * 1024, :sync => true, :thin_provisioned => true, :dependent => true)