Add service specific custom haproxy config override

Change-Id: If6c50606fa3da353728ae4d916df20fcc95b8927
This commit is contained in:
Isaac Prior 2020-11-09 14:31:03 +00:00
parent 35488ecc4b
commit e66186f89a
2 changed files with 11 additions and 0 deletions

View File

@ -3,6 +3,8 @@
vars:
service: "{{ item.value }}"
haproxy_templates:
- "{{ node_custom_config }}/haproxy-config/{{ inventory_hostname }}/{{ item.key }}.cfg"
- "{{ node_custom_config }}/haproxy-config/{{ item.key }}.cfg"
- "{{ node_custom_config }}/haproxy-config/{{ inventory_hostname }}/{{ haproxy_service_template }}"
- "{{ node_custom_config }}/haproxy-config/{{ haproxy_service_template }}"
- "templates/{{ haproxy_service_template }}"

View File

@ -0,0 +1,9 @@
---
features:
- |
Adds a means of overriding the haproxy config of individual
services. Custom template files can be placed under
``{{ node_custom_config }}/haproxy-config/`` to be rendered
with the same variables as the generic template.
Template file names must match the service to override eg.
``nova-novncproxy.cfg``.