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

25 lines
574 B
YAML

---
- import_role:
name: service-precheck
vars:
service_precheck_services: "{{ qinling_services }}"
service_name: "{{ project_name }}"
- name: Get container facts
become: true
kolla_container_facts:
name:
- qinling_api
register: container_facts
- name: Checking free port for Qinling API
wait_for:
host: "{{ api_interface_address }}"
port: "{{ qinling_api_port }}"
connect_timeout: 1
timeout: 1
state: stopped
when:
- container_facts['qinling_api'] is not defined
- inventory_hostname in groups['qinling-api']