set MANAGEMENT ip as null 17/26417/2
authorzhouya <zhou.ya@zte.com.cn>
Thu, 22 Dec 2016 07:17:27 +0000 (15:17 +0800)
committerzhou ya <zhou.ya@zte.com.cn>
Tue, 3 Jan 2017 02:25:03 +0000 (02:25 +0000)
we have got MANAGEMENT ip from network.yml
section networks ip ranges part,so here is duplicated

Change-Id: I144a4c5b7e59a1ec1cb1b83a944752a3a1f4d65a
Signed-off-by: zhouya <zhou.ya@zte.com.cn>
deploy/get_conf.py

index eaac8b1..569f5ed 100755 (executable)
@@ -93,10 +93,4 @@ def config(dha_file, network_file):
     hosts_name = dha_config_parse(data, dha_file)
     data = init(network_file)
     network_map, vip, interface_map = network_config_parse(data, network_file)
-    for interface_name in interface_map:
-        for name in interface_map[interface_name]:
-            if name.get('name', None) == 'MANAGEMENT':
-                name['ip'] = network_map.get(
-                    'MANAGEMENT', None).get(
-                    'ip_ranges', None)[0].get('start', None)
     return interface_map, hosts_name, network_map, vip