kolla-ansible/ansible/roles/etcd/tasks/precheck.yml
caoyuan fb90ae70a0 Move etcd precheck into its own role
Change-Id: Ic1b1dcb535dd6dc67bcf165d74c0046c5d12c4c1
Partially-implements: blueprint condition-pre-check
2017-01-11 16:38:38 +08:00

27 lines
750 B
YAML

---
- name: Get container facts
kolla_container_facts:
name:
- etcd
register: container_facts
- name: Checking free port for Etcd Peer
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ etcd_peer_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['etcd'] is not defined
- inventory_hostname in groups['etcd']
- name: Checking free port for Etcd Client
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ etcd_client_port }}"
connect_timeout: 1
state: stopped
when:
- container_facts['etcd'] is not defined
- inventory_hostname in groups['etcd']