Merge "Fix RedisVirtualIP when overrdiing InternalApi name_lower" into stable/stein

This commit is contained in:
Zuul 2019-06-14 01:34:35 +00:00 committed by Gerrit Code Review
commit 7869cd9cd8
2 changed files with 9 additions and 1 deletions

View File

@ -125,7 +125,7 @@ parameters:
{%- for network in networks if network.vip|default(false) %}
{{network.name}}: {{network.name_lower}}_subnet
{%- endfor %}
redis: internal_api_subnet
redis: {{ _service_nets.get('internal_api', 'internal_api') }}_subnet
type: json
# We define mappings to work around names that break when doing the

View File

@ -0,0 +1,8 @@
---
fixes:
- |
When changeing the ``name_lower`` of the ``InternalApi`` network and using
the ``service_net_map_replace`` option in network data. The subnet
referenced in ``VipSubnetMapDefaults`` did not take in account the custom
lowercase name for the network, causing deployment error.
See bug: `1832461 <https://bugs.launchpad.net/tripleo/+bug/1832461>`_.