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

Merge "Only set up the kolla ansible venv on hosts in the kolla ansible inventory"

parents de92890b 300f9013
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,15 @@
- name: Ensure a virtualenv exists for kolla-ansible
hosts: seed:overcloud
gather_facts: False
vars:
# kolla_overcloud_inventory_top_level_group_map looks like:
# kolla_overcloud_inventory_top_level_group_map:
# control:
# groups:
# - controllers
overcloud_nodes_in_kolla_inventory: >-
{{ kolla_overcloud_inventory_top_level_group_map.values() |
map(attribute='groups') | flatten | unique | join(':') }}
tags:
- kolla-ansible
- kolla-target-venv
......@@ -42,4 +51,6 @@
owner: "{{ kolla_ansible_user }}"
group: "{{ kolla_ansible_group }}"
become: True
when: kolla_ansible_target_venv is not none
when:
- kolla_ansible_target_venv is not none
- inventory_hostname in query('inventory_hostnames', overcloud_nodes_in_kolla_inventory)
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