Skip to content
Snippets Groups Projects
Commit 0440e45d authored by Dmitry Chepurovskiy's avatar Dmitry Chepurovskiy Committed by Kubernetes Prow Robot
Browse files

Fix supplementary_addresses rendering error (#4403)

parent 2fb27c85
No related branches found
No related tags found
No related merge requests found
...@@ -63,10 +63,10 @@ ...@@ -63,10 +63,10 @@
{% endif %} {% endif %}
{{ hostvars[host]['ip'] | default(fallback_ips[host]) }} {{ hostvars[host]['ip'] | default(fallback_ips[host]) }}
{%- endfor %} {%- endfor %}
{%- if supplementary_addresses_in_ssl_keys is defined -%} {% if supplementary_addresses_in_ssl_keys is defined -%}
{% for addr in supplementary_addresses_in_ssl_keys %} {% for addr in supplementary_addresses_in_ssl_keys %}
{{ addr }} {{ addr }}
{%- endfor %} {% endfor %}
{%- endif %} {%- endif %}
tags: facts tags: facts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment