2019-05-22 13:22:14 -04:00
|
|
|
---
|
2019-12-17 15:55:05 +00:00
|
|
|
- import_role:
|
|
|
|
name: service-precheck
|
|
|
|
vars:
|
|
|
|
service_precheck_services: "{{ qinling_services }}"
|
|
|
|
service_name: "{{ project_name }}"
|
|
|
|
|
2019-05-22 13:22:14 -04:00
|
|
|
- name: Get container facts
|
2019-04-09 11:59:02 +00:00
|
|
|
become: true
|
2019-05-22 13:22:14 -04:00
|
|
|
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']
|