Merge "Handle config file without cluster network"

This commit is contained in:
Zuul 2019-01-17 20:19:12 +00:00 committed by Gerrit Code Review
commit b63ed49e15
1 changed files with 27 additions and 22 deletions

View File

@ -3007,6 +3007,7 @@ class ConfigAssistant():
# Cluster network configuration
if self.kubernetes:
if config.has_section('cCLUSTER'):
self.cluster_host_interface_name = config.get(
'cCLUSTER', 'CLUSTER_INTERFACE_NAME')
self.cluster_host_interface = config.get(
@ -3029,6 +3030,10 @@ class ConfigAssistant():
'cCLUSTER', 'CLUSTER_BOND_POLICY')
self.cluster_host_subnet = IPNetwork(config.get(
'cCLUSTER', 'CLUSTER_SUBNET'))
else:
self.cluster_host_interface_name = \
self.management_interface_name
self.cluster_host_interface = self.management_interface
self.cluster_host_interface_configured = True
# External OAM network configuration