Merge "Fix Ansible inventory generation when reusing group names"

This commit is contained in:
Zuul 2022-04-07 12:25:06 +00:00 committed by Gerrit Code Review
commit 7b8c2fa6a6
2 changed files with 7 additions and 1 deletions
ansible/roles/kolla-ansible/templates
releasenotes/notes

@ -36,7 +36,7 @@ ansible_python_interpreter={{ kolla_ansible_target_venv }}/bin/python
# Mapping from kolla-ansible group {{ kolla_group }} to top level kayobe
# groups.
[{{ kolla_group }}:children]
{% for group in kolla_group_config.groups %}
{% for group in renamed_groups %}
{{ group }}
{% endfor %}

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes Ansible inventory generation with some custom group mappings using
the same group names for Kayobe and Kolla Ansible. See `story 2009927
<https://storyboard.openstack.org/#!/story/2009927>`__ for details.