Files
openstack-ansible-os_cloudk…/examples/playbook.yml
Dmitriy Rabotyagov b8f42066f4 Auto-fix yaml rules
In order to reduce divergance with ansible-lint rules, we apply
auto-fixing of violations.

In current patch we replace all kind of truthy variables with
`true` or `false` values to align with recommendations along with
alignment of used quotes.

Change-Id: I3e5d17d5f424643bbb3af1c58cc596b85d108626
2025-02-12 08:58:56 +01:00

20 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"