Merge "Remove network_virtual_ips hard-coded name filter" into stable/wallaby

This commit is contained in:
Zuul 2021-10-28 11:56:49 +00:00 committed by Gerrit Code Review
commit 4dfc6523e8
1 changed files with 0 additions and 4 deletions

View File

@ -414,13 +414,9 @@ outputs:
ip_address: {get_param: [NetVipMap, ctlplane]}
index: 1
{%- for network in networks if network.vip|default(false) and network.enabled|default(true) %}
# External virtual ip is currently being handled separately as public_virtual_ip.
# Likewise, optional StorageNFS virtual ip is handled separately as ganesha_vip.
{%- if network.name != 'External' and network.name != 'StorageNFS' %}
{{network.name_lower}}:
ip_address: {get_param: [NetVipMap, {get_param: {{network.name}}NetName}]}
index: {{loop.index + 1}}
{%- endif %}
{%- endfor %}
cloud_names: {get_param: CloudNames}
enable_internal_tls: {get_param: EnableInternalTLS}