75862bc751
IPv6 control plane implementation [1] follow-up. [1] Ia34e6916ea4f99e9522cd2ddde03a0a4776f7e2c Change-Id: I4c2bd81e77fc09a04838a62f008e5d6c5dc1483d
32 lines
940 B
YAML
32 lines
940 B
YAML
---
|
|
- name: Get container facts
|
|
become: true
|
|
kolla_container_facts:
|
|
name:
|
|
- qdrouterd
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Qdrouterd
|
|
wait_for:
|
|
host: "{{ api_interface_address }}"
|
|
port: "{{ qdrouterd_port }}"
|
|
connect_timeout: 1
|
|
timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['qdrouterd'] is not defined
|
|
- inventory_hostname in groups['qdrouterd']
|
|
|
|
- name: Check if all qdrouterd hostnames are resolvable
|
|
vars:
|
|
nss_database: "{{ 'ahostsv4' if api_address_family == 'ipv4' else 'ahostsv6' }}"
|
|
command: "getent {{ nss_database }} {{ hostvars[item]['ansible_hostname'] }}"
|
|
changed_when: false
|
|
register: qdrouterd_hostnames
|
|
with_items: "{{ groups['qdrouterd'] }}"
|
|
|
|
- fail: msg="Hostname has to resolve to IP address of api_interface"
|
|
with_items: "{{ qdrouterd_hostnames.results }}"
|
|
when:
|
|
- "item.stdout.find('api' | kolla_address(item['item'])) == -1"
|