Move magnum precheck into its own role
Co-Authored-By: caoyuan <cao.yuan@99cloud.net> Change-Id: I3cea0677379773d1426cfd314bead5e58e5c825f Partially-implements: blueprint condition-pre-check
This commit is contained in:
parent
cfac48e3ff
commit
f386c19283
@ -124,6 +124,17 @@
|
|||||||
- "{{ 'ironic_api' not in haproxy_stat }}"
|
- "{{ 'ironic_api' not in haproxy_stat }}"
|
||||||
- inventory_hostname in groups['haproxy']
|
- inventory_hostname in groups['haproxy']
|
||||||
|
|
||||||
|
- name: Checking free port for Magnum API HAProxy
|
||||||
|
wait_for:
|
||||||
|
host: "{{ kolla_internal_vip_address }}"
|
||||||
|
port: "{{ magnum_api_port }}"
|
||||||
|
connect_timeout: 1
|
||||||
|
state: stopped
|
||||||
|
when:
|
||||||
|
- enable_magnum | bool
|
||||||
|
- "{{ 'magnum_api' not in haproxy_stat }}"
|
||||||
|
- inventory_hostname in groups['haproxy']
|
||||||
|
|
||||||
- name: Checking free port for Manila API HAProxy
|
- name: Checking free port for Manila API HAProxy
|
||||||
wait_for:
|
wait_for:
|
||||||
host: "{{ kolla_internal_vip_address }}"
|
host: "{{ kolla_internal_vip_address }}"
|
||||||
|
@ -1 +1,16 @@
|
|||||||
---
|
---
|
||||||
|
- name: Get container facts
|
||||||
|
kolla_container_facts:
|
||||||
|
name:
|
||||||
|
- magnum_api
|
||||||
|
register: container_facts
|
||||||
|
|
||||||
|
- name: Checking free port for Magnum API
|
||||||
|
wait_for:
|
||||||
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
||||||
|
port: "{{ magnum_api_port }}"
|
||||||
|
connect_timeout: 1
|
||||||
|
state: stopped
|
||||||
|
when:
|
||||||
|
- container_facts['magnum_api'] is not defined
|
||||||
|
- inventory_hostname in groups['magnum-api']
|
||||||
|
@ -223,26 +223,6 @@
|
|||||||
- enable_iscsid | bool
|
- enable_iscsid | bool
|
||||||
- inventory_hostname in groups['tgtd']
|
- inventory_hostname in groups['tgtd']
|
||||||
|
|
||||||
- name: Checking free port for Magnum API
|
|
||||||
wait_for:
|
|
||||||
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
||||||
port: "{{ magnum_api_port }}"
|
|
||||||
connect_timeout: 1
|
|
||||||
state: stopped
|
|
||||||
when:
|
|
||||||
- enable_magnum | bool
|
|
||||||
- inventory_hostname in groups['magnum-api']
|
|
||||||
|
|
||||||
- name: Checking free port for Magnum API HAProxy
|
|
||||||
wait_for:
|
|
||||||
host: "{{ kolla_internal_vip_address }}"
|
|
||||||
port: "{{ magnum_api_port }}"
|
|
||||||
connect_timeout: 1
|
|
||||||
state: stopped
|
|
||||||
when:
|
|
||||||
- enable_magnum | bool
|
|
||||||
- inventory_hostname in groups['haproxy']
|
|
||||||
|
|
||||||
- name: Checking free port for MariaDB
|
- name: Checking free port for MariaDB
|
||||||
wait_for:
|
wait_for:
|
||||||
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user