Skip to content
Snippets Groups Projects
Commit fe3ad83b authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Move trove precheck into its own role"

parents c266d769 8b370734
No related branches found
No related tags found
No related merge requests found
...@@ -124,6 +124,17 @@ ...@@ -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 @@ ...@@ -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']
--- ---
- 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']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment