Clean up some aspects of node switchover

This commit is contained in:
Joshua Boniface 2019-12-18 21:39:40 -05:00
parent 23188199cb
commit 98764f1edd
1 changed files with 8 additions and 2 deletions

View File

@ -261,9 +261,14 @@ class NodeInstance(object):
# Routing primary/secondary states
def become_secondary(self):
if self.daemon_state == 'init':
return
self.logger.out('Setting router {} to secondary state'.format(self.name), state='i')
self.logger.out('Network list: {}'.format(', '.join(self.network_list)), state='i')
time.sleep(2)
time.sleep(1)
if self.config['enable_api']:
self.logger.out('Stopping PVC API client service', state='i')
common.run_os_command("systemctl stop pvc-api.service")
@ -278,14 +283,15 @@ class NodeInstance(object):
# Establish a lock
with zkhandler.writelock(self.zk_conn, '/primary_node'):
self.logger.out('Setting router {} to primary state'.format(self.name), state='i')
self.logger.out('Network list: {}'.format(', '.join(self.network_list)), state='i')
# Create floating addresses
self.logger.out('Network list: {}'.format(', '.join(self.network_list)), state='i')
self.createFloatingAddresses()
# Start up the gateways and DHCP servers
for network in self.d_network:
self.d_network[network].createGateways()
self.d_network[network].startDHCPServer()
time.sleep(1)
self.logger.out('Setting Patroni leader to this node', state='i')