有没有办法调整磁盘大小,也就是说,使用govmomi包扩展虚拟机的磁盘大小。Pyvmomi有ExtendVirtualDisk(),在govmomi中有类似的功能吗
发布于 2019-07-04 04:48:59
govmomi也存在相同的方法,请参见第1790行:https://github.com/vmware/govmomi/blob/master/simulator/esx/task_manager.go
&types.ElementDescription{
Description: types.Description{
Label: "Extend virtual disk",
Summary: "Expand the capacity of a virtual disk to the new capacity",
},
Key: "VirtualDiskManager.extendVirtualDisk",
}https://stackoverflow.com/questions/56864215
复制相似问题