fix the keepalived interface can not assign error

Change-Id: I041d593aef86104825cba277c8b434597d7b16c3
This commit is contained in:
root 2017-07-07 14:32:54 +08:00
parent cc82820fc5
commit bb7d17af34
1 changed files with 1 additions and 1 deletions

View File

@ -155,6 +155,7 @@ def get_host_network_ip(req, host_detail, cluster_networks, network_type):
def get_controller_node_cfg(req, host_detail, cluster_networks):
deploy_node_cfg = {}
host_name = host_detail['name'].split('.')[0]
host_mgt_network = get_host_interface_by_network(host_detail, 'MANAGEMENT')
host_mgt_macname = host_mgt_network['name']
@ -174,7 +175,6 @@ def get_controller_node_cfg(req, host_detail, cluster_networks):
if not host_mgt_ip:
msg = "management ip of host %s can't be empty" % host_detail['id']
raise exception.InvalidNetworkConfig(msg)
deploy_node_cfg = {}
deploy_node_cfg.update({'mgtip': host_mgt_ip})
deploy_node_cfg.update({'mgt_macname': host_mgt_macname})
deploy_node_cfg.update({'pub_macname': host_pub_macname})