Add cloudkitty example playbook

This playbook is also used by integrated ansible-lint check to verify
role syntax.

Change-Id: Ia53b316f9449af44d9218526c8f61af7d83775c7
This commit is contained in:
Dmitriy Rabotyagov 2021-05-21 17:45:57 +03:00
parent 39feacfa43
commit 3b76182426
1 changed files with 20 additions and 0 deletions

20
examples/playbook.yml Normal file
View File

@ -0,0 +1,20 @@
---
- name: Gather cloudkitty facts
hosts: cloudkitty_all
gather_facts: True
tags:
- always
- name: Install cloudkitty services
hosts: cloudkitty_all
gather_facts: False
serial:
- 1
- "100%"
user: root
environment: "{{ deployment_environment_variables | default({}) }}"
tags:
- cloudkitty
roles:
- role: "os_cloudkitty"