Move tacker precheck into its own role

Change-Id: I63f5247a01683cff416847c1856a24997bf8605c
Partially-implements: blueprint condition-pre-check
This commit is contained in:
caoyuan 2017-01-02 21:34:23 +08:00
parent f4186d4bd7
commit 5b1c6a47aa
3 changed files with 26 additions and 20 deletions

View File

@ -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 Tacker Server HAProxy
wait_for:
host: "{{ kolla_internal_vip_address }}"
port: "{{ tacker_server_port }}"
connect_timeout: 1
state: stopped
when:
- enable_tacker | bool
- "{{ 'tacker_server' not in haproxy_stat }}"
- inventory_hostname in groups['haproxy']
- name: Checking free port for Trove API HAProxy - name: Checking free port for Trove API HAProxy
wait_for: wait_for:
host: "{{ kolla_internal_vip_address }}" host: "{{ kolla_internal_vip_address }}"

View File

@ -739,23 +739,3 @@
when: when:
- enable_searchlight | bool - enable_searchlight | bool
- inventory_hostname in groups['haproxy'] - inventory_hostname in groups['haproxy']
- name: Checking free port for Tacker Server
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ tacker_server_port }}"
connect_timeout: 1
state: stopped
when:
- enable_tacker | bool
- inventory_hostname in groups['tacker']
- name: Checking free port for Tacker Server HAProxy
wait_for:
host: "{{ kolla_internal_vip_address }}"
port: "{{ tacker_server_port }}"
connect_timeout: 1
state: stopped
when:
- enable_tacker | bool
- inventory_hostname in groups['haproxy']

View File

@ -1 +1,16 @@
--- ---
- name: Get container facts
kolla_container_facts:
name:
- tacker
register: container_facts
- name: Checking free port for Tacker Server
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ tacker_server_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['tacker'] is not defined
- inventory_hostname in groups['tacker']