Support inner/external-comupte sub-group

Change-Id: I58b1b1eb96fdc1bbee601f00d1c164b3c3515736
Signed-off-by: Zhijiang Hu <hu.zhijiang@zte.com.cn>
This commit is contained in:
Zhijiang Hu 2018-04-04 09:46:27 +08:00
parent f6c54891ea
commit ce572f2ea2
1 changed files with 2 additions and 2 deletions

View File

@ -75,12 +75,12 @@ def update_inventory_file(file_path, filename, node_name, host_name,
def add_role_to_inventory(file_path, config_data):
LOG.info(_("add role to inventory file..."))
node_names = ['control', 'network', 'compute', 'monitoring',
node_names = ['control', 'network', 'external-compute', 'monitoring',
'storage', 'deployment']
clean_inventory_file(file_path, 'multinode', node_names)
role_names_list = {'Controller_ips': ['control'],
'Network_ips': ['network'],
'Computer_ips': ['compute', 'monitoring'],
'Computer_ips': ['external-compute'],
'Storage_ips': ['storage']}
for role_ips, role_sections in role_names_list.items():
for role_section in role_sections: