mirror of https://github.com/ceph/ceph-ansible.git
facts: fix deployments with different net interface names
Deployments when radosgws don't have the same names for
network interface.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2095605
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit f6b49f78a9
)
pull/7240/head
parent
42bd198a91
commit
5847fc5366
|
@ -30,16 +30,26 @@
|
||||||
block:
|
block:
|
||||||
- name: set_fact _interface
|
- name: set_fact _interface
|
||||||
set_fact:
|
set_fact:
|
||||||
_interface: "{{ (radosgw_interface | replace('-', '_')) }}"
|
_interface: "{{ (hostvars[item]['radosgw_interface'] | replace('-', '_')) }}"
|
||||||
|
loop: "{{ groups.get(rgw_group_name, []) }}"
|
||||||
|
delegate_to: "{{ item }}"
|
||||||
|
delegate_facts: true
|
||||||
|
run_once: true
|
||||||
|
|
||||||
- name: set_fact _radosgw_address to radosgw_interface - ipv4
|
- name: set_fact _radosgw_address to radosgw_interface - ipv4
|
||||||
set_fact:
|
set_fact:
|
||||||
_radosgw_address: "{{ hostvars[inventory_hostname]['ansible_facts'][_interface][ip_version]['address'] }}"
|
_radosgw_address: "{{ hostvars[item]['ansible_facts'][hostvars[item]['_interface']][ip_version]['address'] }}"
|
||||||
|
loop: "{{ groups.get(rgw_group_name, []) }}"
|
||||||
|
delegate_to: "{{ item }}"
|
||||||
|
delegate_facts: true
|
||||||
when: ip_version == 'ipv4'
|
when: ip_version == 'ipv4'
|
||||||
|
|
||||||
- name: set_fact _radosgw_address to radosgw_interface - ipv6
|
- name: set_fact _radosgw_address to radosgw_interface - ipv6
|
||||||
set_fact:
|
set_fact:
|
||||||
_radosgw_address: "{{ hostvars[inventory_hostname]['ansible_facts'][_interface][ip_version][0]['address'] | ansible.utils.ipwrap }}"
|
_radosgw_address: "{{ hostvars[item]['ansible_facts'][hostvars[item]['_interface']][ip_version][0]['address'] | ipwrap }}"
|
||||||
|
loop: "{{ groups.get(rgw_group_name, []) }}"
|
||||||
|
delegate_to: "{{ item }}"
|
||||||
|
delegate_facts: true
|
||||||
when: ip_version == 'ipv6'
|
when: ip_version == 'ipv6'
|
||||||
|
|
||||||
- name: set_fact rgw_instances without rgw multisite
|
- name: set_fact rgw_instances without rgw multisite
|
||||||
|
|
Loading…
Reference in New Issue