--- - name: Get container facts become: true kolla_container_facts: name: "{{ glance_services.values()|map(attribute='container_name')|list }}" register: container_facts - name: Checking free port for Glance API wait_for: host: "{{ api_interface_address }}" port: "{{ glance_api_listen_port }}" connect_timeout: 1 timeout: 1 state: stopped when: - glance_services['glance-api'].host_in_groups | bool - glance_services['glance-api'].enabled | bool - container_facts['glance_api'] is not defined