kolla-ansible/ansible/roles/ceph/tasks/precheck.yml

18 lines
392 B
YAML

---
- name: Get container facts
kolla_container_facts:
name:
- ceph_rgw
register: container_facts
- name: Checking free port for RadosGW
wait_for:
host: "{{ api_interface_address }}"
port: "{{ rgw_port }}"
connect_timeout: 1
timeout: 1
state: stopped
when:
- container_facts['ceph-rgw'] is not defined
- inventory_hostname in groups['ceph-rgw']