-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdd_vGPU_to_VM.py
65 lines (54 loc) · 2.22 KB
/
Add_vGPU_to_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
#Add_vGPU_to_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
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
cspec = vim.vm.ConfigSpec()
cspec.deviceChange = [vim.VirtualDeviceConfigSpec()]
cspec.deviceChange[0].operation = 'add'
cspec.deviceChange[0].device = vim.VirtualPCIPassthrough()
cspec.deviceChange[0].device.deviceInfo = vim.Description()
cspec.deviceChange[0].device.deviceInfo.summary = 'NVIDIA GRID vGPU grid_p4-4q'
cspec.deviceChange[0].device.deviceInfo.label = 'New PCI device'
cspec.deviceChange[0].device.backing = \
vim.VirtualPCIPassthroughVmiopBackingInfo(vgpu='grid_p4-4q')
#cspec.deviceChange[0].device.backing.vgpu =str('grid_p4-2q')
WaitForTask(vm.Reconfigure(cspec))
###################################################
# End New Content
###################################################
return 0
if __name__ == "__main__":
main()