63d368c69d
+ Trying to get OSP specific data + Pulling neutron facts + Nova + Adding compute to hardware + Adding undercloud + (rook) Patch to Metadata.py + Getting Metadata in required form + Splitting playbook into roles + (rook) Patching + Generating separate metadata files + Running script through ansible + Passing metadata file location from playbook per rook + Per node ovs version Change-Id: I8202b7702ba6e124356447405f7baacd8a046b95
13 lines
255 B
Django/Jinja
13 lines
255 B
Django/Jinja
{% for host in groups['controller'] %}
|
|
{{hostvars[host]| to_nice_json}}
|
|
{% endfor %}
|
|
{% for host in groups['compute'] %}
|
|
{{hostvars[host]| to_nice_json}}
|
|
{% endfor %}
|
|
{% for host in groups['undercloud'] %}
|
|
{{hostvars[host]| to_nice_json}}
|
|
{% endfor %}
|
|
|
|
|
|
|