kolla-ansible/ansible/roles/senlin/tasks/precheck.yml
caoyuan b08e4f9ed1 Move senlin precheck into its own role
Co-Authored-By: zhubingbing <zhubingbing10@gmail.com>

Change-Id: Id0a941ad5b15c33034b93e19d10cc995e8520945
Partially-implements: blueprint condition-pre-check
2017-01-10 04:58:47 +00:00

17 lines
447 B
YAML

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