3b76182426
This playbook is also used by integrated ansible-lint check to verify role syntax. Change-Id: Ia53b316f9449af44d9218526c8f61af7d83775c7
21 lines
361 B
YAML
21 lines
361 B
YAML
---
|
|
|
|
- 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"
|