Merge "Move trove precheck into its own role"
This commit is contained in:
commit
fe3ad83b1d
@ -124,6 +124,17 @@
|
|||||||
- "{{ 'sahara_api' not in haproxy_stat }}"
|
- "{{ 'sahara_api' not in haproxy_stat }}"
|
||||||
- inventory_hostname in groups['haproxy']
|
- inventory_hostname in groups['haproxy']
|
||||||
|
|
||||||
|
- name: Checking free port for Trove API HAProxy
|
||||||
|
wait_for:
|
||||||
|
host: "{{ kolla_internal_vip_address }}"
|
||||||
|
port: "{{ trove_api_port }}"
|
||||||
|
connect_timeout: 1
|
||||||
|
state: stopped
|
||||||
|
when:
|
||||||
|
- enable_trove | bool
|
||||||
|
- "{{ 'trove_api' not in haproxy_stat }}"
|
||||||
|
- inventory_hostname in groups['haproxy']
|
||||||
|
|
||||||
- name: Checking free port for Watcher API HAProxy
|
- name: Checking free port for Watcher API HAProxy
|
||||||
wait_for:
|
wait_for:
|
||||||
host: "{{ kolla_internal_vip_address }}"
|
host: "{{ kolla_internal_vip_address }}"
|
||||||
@ -134,4 +145,3 @@
|
|||||||
- enable_watcher | bool
|
- enable_watcher | bool
|
||||||
- "{{ 'watcher_api' not in haproxy_stat }}"
|
- "{{ 'watcher_api' not in haproxy_stat }}"
|
||||||
- inventory_hostname in groups['haproxy']
|
- inventory_hostname in groups['haproxy']
|
||||||
|
|
||||||
|
@ -1 +1,16 @@
|
|||||||
---
|
---
|
||||||
|
- name: Get container facts
|
||||||
|
kolla_container_facts:
|
||||||
|
name:
|
||||||
|
- trove_api
|
||||||
|
register: container_facts
|
||||||
|
|
||||||
|
- name: Checking free port for Trove API
|
||||||
|
wait_for:
|
||||||
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
||||||
|
port: "{{ trove_api_port }}"
|
||||||
|
connect_timeout: 1
|
||||||
|
state: stopped
|
||||||
|
when:
|
||||||
|
- container_facts['trove_api'] is not defined
|
||||||
|
- inventory_hostname in groups['trove-api']
|
||||||
|
Loading…
Reference in New Issue
Block a user