cbd6f0e31f
In order to make it easier to differentiate between the lists of python packages, distribution packages, downloaded packages, package pins and other similar variables the variable names are being changed to ensure that they have a more explicit suffix that defines the purpose and makes the naming more consistent. This is to facilitate a lookup plugin which will be able to look up all the package lists and present them as a consolidated piece of data which may be used for artifact preparation. Change-Id: Ia91feb054b825149da64a626e2060e362f66427c
14 lines
541 B
YAML
14 lines
541 B
YAML
- name: Install Designate Server
|
|
hosts: designate_all
|
|
user: root
|
|
roles:
|
|
- { role: "os_designate", tags: [ "os-designate" ] }
|
|
vars:
|
|
external_lb_vip_address: 172.16.24.1
|
|
internal_lb_vip_address: 192.168.0.1
|
|
designate_galera_address: "{{ internal_lb_vip_address }}"
|
|
designate_container_mysql_password: "SuperSecretePassword1"
|
|
designate_pool_manager_container_mysql_password: "SuperSecretePassword2"
|
|
designate_service_password: "SuperSecretePassword3"
|
|
designate_rabbitmq_password: "SuperSecretePassword4"
|