Add flushed state set

This commit is contained in:
Joshua Boniface 2018-06-17 02:08:40 -04:00
parent 1db8655f91
commit 3c6678434c
1 changed files with 6 additions and 3 deletions

View File

@ -331,9 +331,9 @@ def fenceNode(node_name, zk):
current_hypervisor = zk.get('/domains/{}/hypervisor'.format(dom_uuid))[0].decode('ascii') current_hypervisor = zk.get('/domains/{}/hypervisor'.format(dom_uuid))[0].decode('ascii')
for hypervisor in hypervisor_list: for hypervisor in hypervisor_list:
print(hypervisor) print(hypervisor)
daemonstate = zk.get('/nodes/{}/daemonstate'.format(hypervisor))[0].decode('ascii') daemon_state = zk.get('/nodes/{}/daemonstate'.format(hypervisor))[0].decode('ascii')
domainstate = zk.get('/nodes/{}/domainstate'.format(hypervisor))[0].decode('ascii') domain_state = zk.get('/nodes/{}/domainstate'.format(hypervisor))[0].decode('ascii')
if daemonstate != 'run' or domainstate != 'ready': if daemon_state != 'run' or domain_state != 'ready':
continue continue
memfree = int(zk.get('/nodes/{}/memfree'.format(hypervisor))[0].decode('ascii')) memfree = int(zk.get('/nodes/{}/memfree'.format(hypervisor))[0].decode('ascii'))
@ -348,6 +348,9 @@ def fenceNode(node_name, zk):
transaction.set_data('/domains/{}/lasthypervisor'.format(dom_uuid), current_hypervisor.encode('ascii')) transaction.set_data('/domains/{}/lasthypervisor'.format(dom_uuid), current_hypervisor.encode('ascii'))
transaction.commit() transaction.commit()
# Set node in flushed state for easy remigrating when it comes back
zk.set('/nodes/{}/domainstate'.format(node_name), 'flushed'.encode('ascii'))
# #
# Perform an IPMI fence # Perform an IPMI fence
# #