Skip to content
Snippets Groups Projects
Commit 7ab223a3 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Sort overcloud inventory hosts and groups"

parents d3f72d6d a1addc35
No related branches found
No related tags found
No related merge requests found
...@@ -37,10 +37,10 @@ ...@@ -37,10 +37,10 @@
{% set ignore_hosts = overcloud_group_hosts_map.get("ignore", []) %} {% set ignore_hosts = overcloud_group_hosts_map.get("ignore", []) %}
{# Add a section for each group. #} {# Add a section for each group. #}
{% for group in overcloud_groups %} {% for group in overcloud_groups | sort %}
[{{ group }}] [{{ group }}]
{% set group_hosts = overcloud_group_hosts_map.get(group, []) %} {% set group_hosts = overcloud_group_hosts_map.get(group, []) %}
{% for host in ironic_inventory.baremetal.hosts %} {% for host in ironic_inventory.baremetal.hosts | sort %}
{% if (host in group_hosts or {% if (host in group_hosts or
(group == overcloud_group_default and host not in all_mapped_hosts)) (group == overcloud_group_default and host not in all_mapped_hosts))
and host not in ignore_hosts %} and host not in ignore_hosts %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment