Merge "Skip both tenant and management networks when generating certs"

This commit is contained in:
Zuul 2020-04-08 23:24:56 +00:00 committed by Gerrit Code Review
commit bb30b51eb8
1 changed files with 4 additions and 4 deletions

View File

@ -58,12 +58,12 @@ resources:
type: OS::Heat::Value
properties:
value:
# NOTE(jaosorior) Get unique network names to create
# certificates for those. We skip the tenant network since
# we don't need a certificate for that.
# NOTE(xek) Get unique network names to create certificates.
# We skip the tenant and management network (vip != false)
# since we don't generate certificates for those.
- ctlplane
{%- for network in networks if network.enabled|default(true) %}
{%- if network.name_lower != 'tenant' %}
{%- if network.vip | default(false) %}
- {{network.name_lower}}
{%- endif %}
{%- endfor %}