blob: f27670bf341874519e18218fd22b5ccb9cbf0016 (
plain)
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
|
import os
import sys
import yaml
def exec_cmd(cmd):
print cmd
os.system(cmd)
def reset_baremetal(dha_info):
print "reset_baremetal"
hosts_info = yaml.load(open(dha_info))
# print hosts_info
ipmiUserDf = hosts_info.get('ipmiUser', 'root')
ipmiPassDf = hosts_info.get('ipmiPass', 'Huawei@123')
print ipmiUserDf
print ipmiPassDf
hosts_list = hosts_info.get('hosts', [])
# print hosts_list
for host in hosts_list:
print host
if ('compute' in host['roles']):
ipmiUser = host.get('ipmiUser', ipmiUserDf)
ipmiPass = host.get('ipmiPass', ipmiPassDf)
ipmiIp = host['ipmiIp']
print ipmiUser
print ipmiPass
print ipmiIp
exec_cmd(
"ipmitool -I lanplus -H %s -U %s -P %s chassis power reset >/dev/null" % # noqa
(ipmiIp, ipmiUser, ipmiPass))
def reset_virtual(dha_info):
print "reset_virtual"
hosts_info = yaml.load(open(dha_info))
print hosts_info
hosts_list = hosts_info.get('hosts', [])
for host in hosts_list:
print host
if ('compute' in host['roles']):
name = host['name']
exec_cmd("virsh destroy %s" % name)
exec_cmd("virsh start %s" % name)
if __name__ == "__main__":
deploy_type = sys.argv[1]
dha_info = sys.argv[2]
print deploy_type
print dha_info
if (deploy_type == 'baremetal'):
reset_baremetal(dha_info)
elif (deploy_type == 'virtual'):
reset_virtual(dha_info)
|