
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: Ib52a0b06e5beda167de7dcf3b7fb42bc9818be62
20 lines
319 B
YAML
20 lines
319 B
YAML
---
|
|
- name: Gather zun facts
|
|
hosts: zun_all
|
|
gather_facts: true
|
|
tags:
|
|
- always
|
|
|
|
- name: Install zun services
|
|
hosts: zun_all
|
|
gather_facts: false
|
|
serial:
|
|
- 1
|
|
- "100%"
|
|
user: root
|
|
environment: "{{ deployment_environment_variables | default({}) }}"
|
|
tags:
|
|
- zun
|
|
roles:
|
|
- role: "os_zun"
|