kolla-ansible/ansible/roles/qinling/tasks/deploy.yml
Gaetan Trellu edb3489820 Adds Qinling Ansible role
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
2019-05-31 10:25:28 -04:00

17 lines
416 B
YAML

---
- include_tasks: register.yml
when: inventory_hostname in groups['qinling-api']
- include_tasks: config.yml
when: inventory_hostname in groups['qinling-api'] or
inventory_hostname in groups['qinling-engine']
- include_tasks: clone.yml
when: qinling_dev_mode | bool
- include_tasks: bootstrap.yml
when: inventory_hostname in groups['qinling-api']
- name: Flush handlers
meta: flush_handlers