mirror of https://github.com/ceph/ceph-ansible.git
59 lines
3.5 KiB
YAML
59 lines
3.5 KiB
YAML
---
|
|
- name: set_fact _monitor_addresses to monitor_address_block ipv4
|
|
set_fact:
|
|
_monitor_addresses: "{{ _monitor_addresses | default([]) + [{ 'name': item, 'addr': hostvars[item]['ansible_facts']['all_ipv4_addresses'] | ips_in_ranges(hostvars[item]['monitor_address_block'].split(',')) | first }] }}"
|
|
with_items: "{{ groups.get(mon_group_name, []) }}"
|
|
when:
|
|
- "item not in _monitor_addresses | default([]) | selectattr('name', 'defined') | map(attribute='name') | list"
|
|
- hostvars[item]['monitor_address_block'] is defined
|
|
- hostvars[item]['monitor_address_block'] != 'subnet'
|
|
- ip_version == 'ipv4'
|
|
|
|
- name: set_fact _monitor_addresses to monitor_address_block ipv6
|
|
set_fact:
|
|
_monitor_addresses: "{{ _monitor_addresses | default([]) + [{ 'name': item, 'addr': hostvars[item]['ansible_facts']['all_ipv6_addresses'] | ips_in_ranges(hostvars[item]['monitor_address_block'].split(',')) | last | ansible.utils.ipwrap }] }}"
|
|
with_items: "{{ groups.get(mon_group_name, []) }}"
|
|
when:
|
|
- "item not in _monitor_addresses | default([]) | selectattr('name', 'defined') | map(attribute='name') | list"
|
|
- hostvars[item]['monitor_address_block'] is defined
|
|
- hostvars[item]['monitor_address_block'] != 'subnet'
|
|
- ip_version == 'ipv6'
|
|
|
|
- name: set_fact _monitor_addresses to monitor_address
|
|
set_fact:
|
|
_monitor_addresses: "{{ _monitor_addresses | default([]) + [{ 'name': item, 'addr': hostvars[item]['monitor_address'] | ansible.utils.ipwrap}] }}"
|
|
with_items: "{{ groups.get(mon_group_name, []) }}"
|
|
when:
|
|
- "item not in _monitor_addresses | default([]) | selectattr('name', 'defined') | map(attribute='name') | list"
|
|
- hostvars[item]['monitor_address'] is defined
|
|
- hostvars[item]['monitor_address'] != 'x.x.x.x'
|
|
|
|
- name: set_fact _monitor_addresses to monitor_interface - ipv4
|
|
set_fact:
|
|
_monitor_addresses: "{{ _monitor_addresses | default([]) + [{ 'name': item, 'addr': hostvars[item]['ansible_facts'][(hostvars[item]['monitor_interface']|replace('-', '_'))][ip_version]['address'] | ansible.utils.ipwrap }] }}"
|
|
with_items: "{{ groups.get(mon_group_name, []) }}"
|
|
when:
|
|
- "item not in _monitor_addresses | default([]) | selectattr('name', 'defined') | map(attribute='name') | list"
|
|
- ip_version == 'ipv4'
|
|
- hostvars[item]['monitor_address_block'] | default('subnet') == 'subnet'
|
|
- hostvars[item]['monitor_address'] | default('x.x.x.x') == 'x.x.x.x'
|
|
- hostvars[item]['monitor_interface'] | default('interface') != 'interface'
|
|
|
|
- name: set_fact _monitor_addresses to monitor_interface - ipv6
|
|
set_fact:
|
|
_monitor_addresses: "{{ _monitor_addresses | default([]) + [{ 'name': item, 'addr': hostvars[item]['ansible_facts'][(hostvars[item]['monitor_interface']|replace('-', '_'))][ip_version][0]['address'] | ansible.utils.ipwrap }] }}"
|
|
with_items: "{{ groups.get(mon_group_name, []) }}"
|
|
when:
|
|
- "item not in _monitor_addresses | default([]) | selectattr('name', 'defined') | map(attribute='name') | list"
|
|
- ip_version == 'ipv6'
|
|
- hostvars[item]['monitor_address_block'] | default('subnet') == 'subnet'
|
|
- hostvars[item]['monitor_address'] | default('x.x.x.x') == 'x.x.x.x'
|
|
- hostvars[item]['monitor_interface'] | default('interface') != 'interface'
|
|
|
|
- name: set_fact _current_monitor_address
|
|
set_fact:
|
|
_current_monitor_address: "{{ item.addr }}"
|
|
with_items: "{{ _monitor_addresses }}"
|
|
when:
|
|
- (inventory_hostname == item.name and not rolling_update | default(False) | bool)
|
|
or (rolling_update | default(False) | bool and item.name == groups.get(mon_group_name, [])[0]) |