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

Merge "Fix Ansible inventory generation when reusing group names"

parents 31951b6d 0c190a22
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ ansible_python_interpreter={{ kolla_ansible_target_venv }}/bin/python ...@@ -36,7 +36,7 @@ ansible_python_interpreter={{ kolla_ansible_target_venv }}/bin/python
# Mapping from kolla-ansible group {{ kolla_group }} to top level kayobe # Mapping from kolla-ansible group {{ kolla_group }} to top level kayobe
# groups. # groups.
[{{ kolla_group }}:children] [{{ kolla_group }}:children]
{% for group in kolla_group_config.groups %} {% for group in renamed_groups %}
{{ group }} {{ group }}
{% endfor %} {% endfor %}
......
---
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.
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