mirror of https://github.com/ceph/ceph-ansible.git
ceph-facts: fix rgw_instances_all fact
The rgw_instances_all fact is supposed to be the list of all radosgw
instances from all rgw nodes.
But the fact is always using the local rgw_instances variable so this
won't work on multiple nodes.
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit 0487d21938
)
pull/5198/head
parent
1b0b7af119
commit
abf40c59ab
|
@ -59,12 +59,18 @@
|
|||
- rgw_instances is undefined
|
||||
- rgw_multisite | bool
|
||||
|
||||
- name: set_fact rgw_instances_all
|
||||
- name: set_fact rgw_instances_host
|
||||
set_fact:
|
||||
rgw_instances_all: '{{ rgw_instances_all | default([]) | union([item.1 | combine({"host": item.0})]) }}'
|
||||
with_nested:
|
||||
- "{{ groups.get(rgw_group_name, []) }}"
|
||||
- "{{ rgw_instances }}"
|
||||
rgw_instances_host: '{{ rgw_instances_host | default([]) | union([item | combine({"host": inventory_hostname})]) }}'
|
||||
with_items: '{{ rgw_instances }}'
|
||||
when:
|
||||
- inventory_hostname in groups.get(rgw_group_name, [])
|
||||
- rgw_multisite | bool
|
||||
|
||||
- name: set_fact rgw_instances_all
|
||||
set_fact:
|
||||
rgw_instances_all: '{{ rgw_instances_all | default([]) | union(hostvars[item]["rgw_instances_host"]) }}'
|
||||
with_items: "{{ groups.get(rgw_group_name, []) }}"
|
||||
when:
|
||||
- inventory_hostname in groups.get(rgw_group_name, [])
|
||||
- rgw_multisite | bool
|
||||
|
|
Loading…
Reference in New Issue