--- - name: Get container facts kolla_container_facts: name: - cinder_api register: container_facts - name: Checking free port for Cinder API wait_for: host: "{{ api_interface_address }}" port: "{{ cinder_api_port }}" connect_timeout: 1 timeout: 1 state: stopped when: - container_facts['cinder_api'] is not defined - inventory_hostname in groups['cinder-api'] - name: Checking LVM volume group exists for Cinder command: "vgs {{ cinder_volume_group }}" register: result changed_when: false failed_when: result | failed when: - enable_cinder | bool - enable_cinder_backend_lvm | bool - inventory_hostname in groups['cinder-volume']