kolla-ansible/ansible/roles/neutron/tasks/precheck.yml
caoyuan e896666cd5 Move neutron precheck into its own role
Change-Id: I6f130a3fb5cebd9f96c81cac26ed08b7363aa7e5
Partially-implements: blueprint condition-pre-check
2017-01-03 15:18:57 +08:00

17 lines
467 B
YAML

---
- name: Get container facts
kolla_container_facts:
name:
- neutron_server
register: container_facts
- name: Checking free port for Neutron Server
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ neutron_server_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['neutron_server'] is not defined
- inventory_hostname in groups['neutron-server']