tripleo-ansible/tripleo_ansible/playbooks/octavia-dcn-deployment.yaml
Takashi Kajinami 8eed51fd2b Use true/false for boolean values
In ansible, usage of true/false for boolean values, instead of yes/no,
is considered as a best practise and is enforced by ansible-lint with
the "truthy value should be one of false, true (truthy)" rule.

This change replaces usage of yes/no by true/false to follow that
practise.

Change-Id: Id130a932f8cb56d76550b9b41dd0556f6a1863d2
2022-01-30 21:58:47 +09:00

22 lines
665 B
YAML

---
- hosts: undercloud
gather_facts: false
environment:
OS_CLOUD: "{{ stack }}"
roles:
- octavia_overcloud_dcn_config
- hosts: octavia_health_manager,octavia_worker,octavia_housekeeping
gather_facts: false
vars:
# Get variables defined for the undercloud in the inventory
username: "{{ hostvars['undercloud'].username }}"
project_name: "{{ hostvars['undercloud'].project_name }}"
overcloud_admin_password: "{{ hostvars['undercloud'].overcloud_admin_password }}"
overcloud_keystone_url: "{{ hostvars['undercloud'].overcloud_keystone_url }}"
environment:
OS_CLOUD: "{{ stack }}"
roles:
- octavia_controller_dcn_config