Merge "Fix skydive_vars evaluation"

This commit is contained in:
Zuul 2019-02-27 05:30:47 +00:00 committed by Gerrit Code Review
commit d100a8ebeb
1 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ outputs:
ansible_become: true
skydive_listen_ip: {{hostvars.raw_get(host)['ctlplane_ip']}}
{% if skydive_vars.analyzers is defined -%}
{{skydive_vars.analyzers|to_nice_yaml()|indent(6)}}
{{skydive_vars.analyzers|to_nice_yaml(indent=6)}}
{%- endif %}
{% endfor %}
@ -145,7 +145,7 @@ outputs:
ansible_become: true
skydive_listen_ip: {{hostvars.raw_get(host)['ctlplane_ip']}}
{% if skydive_vars.agents is defined -%}
{{skydive_vars.agents|to_nice_yaml()|indent(6)}}
{{skydive_vars.agents|to_nice_yaml(indent=6)}}
{%- endif %}
{% endfor %}