kolla-ansible/ansible/roles/cinder/tasks/precheck.yml
caoyuan 91313d8293 Move cinder precheck into its own role
And remove the unnecessary blanks.

Change-Id: Id2b5f8119c446b36c91ec0e63246c90a60459e24
Partially-implements: blueprint condition-pre-check
2017-01-03 15:23:54 +08:00

17 lines
447 B
YAML

---
- name: Get container facts
kolla_container_facts:
name:
- cinder_api
register: container_facts
- name: Checking free port for Cinder API
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ cinder_api_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['cinder_api'] is not defined
- inventory_hostname in groups['cinder-api']