
Qinling is an OpenStack project to provide "Function as a Service". This project aims to provide a platform to support serverless functions. Change-Id: I239a0130f8c8b061b531dab530d65172b0914d7c Implements: blueprint ansible-qinling-support Story: 2005760 Task: 33468
18 lines
413 B
YAML
18 lines
413 B
YAML
---
|
|
- name: Get container facts
|
|
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']
|