kolla-ansible/ansible/roles/manila/tasks/precheck.yml
Mauricio Lima af103d4f77 Move manila precheck into its own role
Co-Authored-By: caoyuan <cao.yuan@99cloud.net>

Change-Id: I8833846c5de0592763fe9df41e07180787db99d3
Partially-implements: blueprint condition-pre-check
2016-12-20 17:50:07 +08:00

17 lines
447 B
YAML

---
- 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']