Skip to content
Snippets Groups Projects
Commit af103d4f authored by Mauricio Lima's avatar Mauricio Lima Committed by caoyuan
Browse files

Move manila precheck into its own role


Co-Authored-By: default avatarcaoyuan <cao.yuan@99cloud.net>

Change-Id: I8833846c5de0592763fe9df41e07180787db99d3
Partially-implements: blueprint condition-pre-check
parent 715e704a
No related branches found
No related tags found
No related merge requests found
...@@ -46,3 +46,14 @@ ...@@ -46,3 +46,14 @@
- 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: Checking free port for Manila API HAProxy
wait_for:
host: "{{ kolla_internal_vip_address }}"
port: "{{ manila_api_port }}"
connect_timeout: 1
state: stopped
when:
- enable_manila | bool
- "{{ 'manila_api' not in haproxy_stat }}"
- inventory_hostname in groups['haproxy']
--- ---
- name: Get container facts
kolla_container_facts:
name:
- manila_api
register: container_facts
- name: Checking free port for Manila API
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ manila_api_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['manila_api'] is not defined
- inventory_hostname in groups['manila-api']
...@@ -453,26 +453,6 @@ ...@@ -453,26 +453,6 @@
- enable_mariadb | bool - enable_mariadb | bool
- inventory_hostname in groups['mariadb'] - inventory_hostname in groups['mariadb']
- name: Checking free port for Manila API
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ manila_api_port }}"
connect_timeout: 1
state: stopped
when:
- enable_manila | bool
- inventory_hostname in groups['manila-api']
- name: Checking free port for Manila API HAProxy
wait_for:
host: "{{ kolla_internal_vip_address }}"
port: "{{ manila_api_port }}"
connect_timeout: 1
state: stopped
when:
- enable_manila | bool
- inventory_hostname in groups['haproxy']
- name: Checking free port for Memcached - name: Checking free port for Memcached
wait_for: wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}" host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
......
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