-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemove_vGPU_From_VM.py
68 lines (56 loc) · 2.22 KB
/
Remove_vGPU_From_VM.py
1
2
3
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
#Remove_vGPU_From_VM
from __future__ import print_function
from pyVim.connect import SmartConnect, Disconnect
from pyVmomi import vim
from pyVmomi import vmodl
import argparse
import atexit
import getpass
import ssl
from pyVim.task import WaitForTask
def main():
context = None
if hasattr(ssl, '_create_unverified_context'):
context = ssl._create_unverified_context()
si = SmartConnect(host="vsa01.wondernerd.local",
user="[email protected]",
pwd="VMware-1",
port=443,
sslContext=context)
if not si:
print("Could not connect to the specified host using specified "
"username and password")
return -1
atexit.register(Disconnect, si)
###################################################
# New Content
###################################################
HostContent=si.content
vm = None
vGPUobj = None
TempVMlist = HostContent.viewManager.CreateContainerView(HostContent.rootFolder,\
[vim.VirtualMachine], True)
for managed_VM_ref in TempVMlist.view: #Go thought VM list
if managed_VM_ref.name == "VMworld2021": #find Desired VM
print(managed_VM_ref)
print(managed_VM_ref.name)
vm = managed_VM_ref #Capture VM as an obj to use next
if vm != None: #Safety to make sure not added to null object
for VMVirtDevice in vm.config.hardware.device: #Go through vPCI and find vGPU
if isinstance(VMVirtDevice, vim.VirtualPCIPassthrough) and \
hasattr(VMVirtDevice.backing, "vgpu"):
if VMVirtDevice.backing.vgpu == "grid_p4-4q":
vGPUobj = VMVirtDevice
print("Found vGPU: " + VMVirtDevice.backing.vgpu)
cspec = vim.vm.ConfigSpec()
cspec.deviceChange = [vim.VirtualDeviceConfigSpec()]
cspec.deviceChange[0].operation = 'remove'
cspec.deviceChange[0].device = vGPUobj
WaitForTask(vm.Reconfigure(cspec))
print("Removed vGPU")
###################################################
# End New Content
###################################################
return 0
if __name__ == "__main__":
main()