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
20 lines
361 B
YAML
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"
|