8eed51fd2b
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
22 lines
665 B
YAML
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
|