Merge "Add network data for the undercloud"

This commit is contained in:
Zuul 2019-01-25 18:05:32 +00:00 committed by Gerrit Code Review
commit 560ec36685
2 changed files with 6 additions and 2 deletions

@ -0,0 +1,3 @@
- name: External
vip: true
name_lower: external

@ -1115,8 +1115,9 @@ def validate(filename, param_map):
# NOTE(mandre): Same goes for the openshift network data where it
# contains only a subset of the overcloud networks.
if (filename.startswith('./network_data_') and
not (filename.endswith('routed.yaml') or
filename.endswith('openshift.yaml'))):
not filename.endswith(('routed.yaml',
'openshift.yaml',
'undercloud.yaml'))):
result = validate_network_data_file(filename)
retval |= result
else: