forked from reubenur-rahman/vmware-pyvmomi-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vmotion.py
117 lines (92 loc) · 3.37 KB
/
vmotion.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
'''
Copyright 2013-2014 Reubenur Rahman
All Rights Reserved
@author: [email protected]
'''
import atexit
import argparse
import sys
import time
from pyVmomi import vim, vmodl
from pyVim import connect
from pyVim.connect import Disconnect
inputs = {'vcenter_ip': '15.22.10.11',
'vcenter_password': 'Password123',
'vcenter_user': 'Administrator',
'vm_name': 'ubuntu12',
'destination_host': '15.22.11.9'
}
def get_obj(content, vimtype, name):
"""
Get the vsphere object associated with a given text name
"""
obj = None
container = content.viewManager.CreateContainerView(content.rootFolder, vimtype, True)
for c in container.view:
if c.name == name:
obj = c
break
return obj
def wait_for_task(task, actionName='job', hideResult=False):
"""
Waits and provides updates on a vSphere task
"""
while task.info.state == vim.TaskInfo.State.running:
time.sleep(2)
if task.info.state == vim.TaskInfo.State.success:
if task.info.result is not None and not hideResult:
out = '%s completed successfully, result: %s' % (actionName, task.info.result)
print out
else:
out = '%s completed successfully.' % actionName
print out
else:
out = '%s did not complete successfully: %s' % (actionName, task.info.error)
raise task.info.error
print out
return task.info.result
def main():
try:
si = None
try:
print "Trying to connect to VCENTER SERVER . . ."
si = connect.Connect(inputs['vcenter_ip'], 443, inputs['vcenter_user'], inputs['vcenter_password'], service="hostd")
except IOError, e:
pass
atexit.register(Disconnect, si)
print "Connected to VCENTER SERVER !"
content = si.RetrieveContent()
vm = get_obj(content, [vim.VirtualMachine], inputs['vm_name'])
destination_host = get_obj(content, [vim.HostSystem], inputs['destination_host'])
resource_pool = vm.resourcePool
if vm.runtime.powerState != 'poweredOn':
print "WARNING:: Migration is only for Powered On VMs"
sys.exit()
migrate_priority = vim.VirtualMachine.MovePriority.defaultPriority
msg = "Migrating %s to destination host %s" % (inputs['vm_name'], inputs['destination_host'])
print msg
#Live Migration :: Change host only
task = vm.Migrate(pool=resource_pool, host=destination_host, priority=migrate_priority)
# Live Migration :: Change both host and datastore
# vm_relocate_spec = vim.vm.RelocateSpec()
# vm_relocate_spec.host = destination_host
# vm_relocate_spec.pool = resource_pool
# datastores = destination_host.datastore
# Assuming Migrating between local datastores
# for datastore in datastores:
# if datastore.summary.type == 'VMFS':
# vm_relocate_spec.datastore = datastore
# break
#
# task = vm.Relocate(spec=vm_relocate_spec)
# Wait for Migrate to complete
wait_for_task(task, si)
except vmodl.MethodFault, e:
print "Caught vmodl fault: %s" % e.msg
return 1
except Exception, e:
print "Caught exception: %s" % str(e)
return 1
# Start program
if __name__ == "__main__":
main()