Merge "Check api_interface instead of network_interface"
This commit is contained in:
commit
847d2e4792
@ -1,4 +1,38 @@
|
|||||||
---
|
---
|
||||||
|
- name: Checking the api_interface is present
|
||||||
|
fail: "msg='Please check the api_interface property - interface {{ api_interface }} not found'"
|
||||||
|
when: api_interface not in ansible_interfaces
|
||||||
|
|
||||||
|
- name: Checking the api_interface is active
|
||||||
|
fail: "msg='Please check the api_interface settings - interface {{ api_interface }} is not active'"
|
||||||
|
when: hostvars[inventory_hostname]['ansible_' + api_interface]['active'] != True
|
||||||
|
|
||||||
|
- name: Checking the api_interface configuration
|
||||||
|
fail: "msg='Please check the api_interface settings - interface {{ api_interface }} configuration missing'"
|
||||||
|
when: hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4'] is not defined
|
||||||
|
|
||||||
|
- name: Checking the api_interface ip address configuration
|
||||||
|
fail: "msg='Please check the api_interface settings - interface {{ api_interface }} ip address problem'"
|
||||||
|
when: hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] is not defined
|
||||||
|
|
||||||
|
- name: Checking if kolla_internal_vip_address and kolla_external_vip_address are not pingable from any node
|
||||||
|
command: ping -c 3 {{ item }}
|
||||||
|
register: ping_output
|
||||||
|
changed_when: false
|
||||||
|
with_items:
|
||||||
|
- "{{ kolla_internal_vip_address }}"
|
||||||
|
- "{{ kolla_external_vip_address }}"
|
||||||
|
failed_when: ping_output.rc != 1
|
||||||
|
when: enable_haproxy | bool
|
||||||
|
|
||||||
|
- name: Checking if kolla_internal_vip_address is in the same network as api_interface on all nodes
|
||||||
|
command: ip -4 -o addr show dev {{ api_interface }}
|
||||||
|
register: ip_addr_output
|
||||||
|
changed_when: false
|
||||||
|
failed_when: "'169.254.' not in kolla_internal_vip_address and \
|
||||||
|
kolla_internal_vip_address | ipaddr(ip_addr_output.stdout.split()[3]) is none"
|
||||||
|
when: enable_haproxy | bool
|
||||||
|
|
||||||
- name: Checking free port for Aodh API
|
- name: Checking free port for Aodh API
|
||||||
wait_for:
|
wait_for:
|
||||||
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
||||||
@ -895,37 +929,3 @@
|
|||||||
when:
|
when:
|
||||||
- inventory_hostname in groups['haproxy']
|
- inventory_hostname in groups['haproxy']
|
||||||
- enable_searchlight | bool
|
- enable_searchlight | bool
|
||||||
|
|
||||||
- name: Checking the network_interface is present
|
|
||||||
fail: "msg='Please check the network_interface property - interface {{ network_interface }} not found'"
|
|
||||||
when: network_interface not in ansible_interfaces
|
|
||||||
|
|
||||||
- name: Checking the network_interface is active
|
|
||||||
fail: "msg='Please check the network_interface settings - interface {{ network_interface }} is not active'"
|
|
||||||
when: hostvars[inventory_hostname]['ansible_' + network_interface]['active'] != True
|
|
||||||
|
|
||||||
- name: Checking the network_interface configuration
|
|
||||||
fail: "msg='Please check the network_interface settings - interface {{ network_interface }} configuration missing'"
|
|
||||||
when: hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4'] is not defined
|
|
||||||
|
|
||||||
- name: Checking the network_interface ip address configuration
|
|
||||||
fail: "msg='Please check the network_interface settings - interface {{ network_interface }} ip address problem'"
|
|
||||||
when: hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4']['address'] is not defined
|
|
||||||
|
|
||||||
- name: Checking if kolla_internal_vip_address and kolla_external_vip_address are not pingable from any node
|
|
||||||
command: ping -c 3 {{ item }}
|
|
||||||
register: ping_output
|
|
||||||
changed_when: false
|
|
||||||
with_items:
|
|
||||||
- "{{ kolla_internal_vip_address }}"
|
|
||||||
- "{{ kolla_external_vip_address }}"
|
|
||||||
failed_when: ping_output.rc != 1
|
|
||||||
when: enable_haproxy | bool
|
|
||||||
|
|
||||||
- name: Checking if kolla_internal_vip_address is in the same network as network_interface on all nodes
|
|
||||||
command: ip -4 -o addr show dev {{ network_interface }}
|
|
||||||
register: ip_addr_output
|
|
||||||
changed_when: false
|
|
||||||
failed_when: "'169.254.' not in kolla_internal_vip_address and \
|
|
||||||
kolla_internal_vip_address | ipaddr(ip_addr_output.stdout.split()[3]) is none"
|
|
||||||
when: enable_haproxy | bool
|
|
||||||
|
Loading…
Reference in New Issue
Block a user