448209459d
Fix existing spelling errors Change-Id: Ie689cf5a344aaa630a4860448b09242333a8e119
13 lines
601 B
YAML
13 lines
601 B
YAML
---
|
|
# Configure HAProxy for one cell for a particular console proxy type.
|
|
- import_role:
|
|
name: loadbalancer-config
|
|
vars:
|
|
project_services: "{{ cell_proxy_project_services | namespace_haproxy_for_cell(cell_name) }}"
|
|
# Default is necessary because this play may not be targeting the hosts in
|
|
# the cell_proxy_group group, and therefore they would not have role
|
|
# defaults defined. If we put this variable in group_vars, then it cannot
|
|
# be overridden by the inventory.
|
|
cell_name: "{{ hostvars[groups[cell_proxy_group][0]]['nova_cell_name'] | default('') }}"
|
|
tags: always
|