2018-12-02 21:17:07 +08:00
|
|
|
---
|
2019-12-17 15:55:05 +00:00
|
|
|
- import_role:
|
|
|
|
name: service-precheck
|
|
|
|
vars:
|
|
|
|
service_precheck_services: "{{ cyborg_services }}"
|
|
|
|
service_name: "{{ project_name }}"
|
|
|
|
|
2018-12-02 21:17:07 +08:00
|
|
|
- name: Get container facts
|
2019-04-09 11:59:02 +00:00
|
|
|
become: true
|
2018-12-02 21:17:07 +08:00
|
|
|
kolla_container_facts:
|
2022-10-28 13:01:47 +02:00
|
|
|
container_engine: "{{ kolla_container_engine }}"
|
2018-12-02 21:17:07 +08:00
|
|
|
name:
|
|
|
|
- cyborg_api
|
2023-01-11 16:04:55 +00:00
|
|
|
check_mode: false
|
2018-12-02 21:17:07 +08:00
|
|
|
register: container_facts
|
|
|
|
|
|
|
|
- name: Checking free port for cyborg API
|
|
|
|
wait_for:
|
|
|
|
host: "{{ api_interface_address }}"
|
|
|
|
port: "{{ cyborg_api_port }}"
|
|
|
|
connect_timeout: 1
|
|
|
|
timeout: 1
|
|
|
|
state: stopped
|
|
|
|
when:
|
|
|
|
- container_facts['cyborg_api'] is not defined
|
|
|
|
- inventory_hostname in groups['cyborg-api']
|