Move trove precheck into its own role

Change-Id: Ic878a76787052e9baf9d710d5d174e2b10b9fd10
Partially-implements: blueprint condition-pre-check
This commit is contained in:
caoyuan 2017-01-02 19:26:26 +08:00
parent b609134e58
commit 8b37073444
2 changed files with 26 additions and 1 deletions

View File

@ -113,6 +113,17 @@
- "{{ 'sahara_api' not in haproxy_stat }}"
- 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
wait_for:
host: "{{ kolla_internal_vip_address }}"
@ -123,4 +134,3 @@
- enable_watcher | bool
- "{{ 'watcher_api' not in haproxy_stat }}"
- inventory_hostname in groups['haproxy']

View File

@ -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']