Merge "Move memcached precheck into its own role"
This commit is contained in:
commit
9d3a60ecf9
@ -1 +1,16 @@
|
|||||||
---
|
---
|
||||||
|
- name: Get container facts
|
||||||
|
kolla_container_facts:
|
||||||
|
name:
|
||||||
|
- memcached
|
||||||
|
register: container_facts
|
||||||
|
|
||||||
|
- name: Checking free port for Memcached
|
||||||
|
wait_for:
|
||||||
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
||||||
|
port: "{{ memcached_port }}"
|
||||||
|
connect_timeout: 1
|
||||||
|
state: stopped
|
||||||
|
when:
|
||||||
|
- container_facts['memcached'] is not defined
|
||||||
|
- inventory_hostname in groups['memcached']
|
||||||
|
@ -333,16 +333,6 @@
|
|||||||
- enable_mariadb | bool
|
- enable_mariadb | bool
|
||||||
- inventory_hostname in groups['mariadb']
|
- inventory_hostname in groups['mariadb']
|
||||||
|
|
||||||
- name: Checking free port for Memcached
|
|
||||||
wait_for:
|
|
||||||
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
||||||
port: "{{ memcached_port }}"
|
|
||||||
connect_timeout: 1
|
|
||||||
state: stopped
|
|
||||||
when:
|
|
||||||
- enable_memcached | bool
|
|
||||||
- inventory_hostname in groups['memcached']
|
|
||||||
|
|
||||||
- name: Checking free port for Murano API
|
- name: Checking free port for Murano API
|
||||||
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