Support customising refactored HAProxy config

Change-Id: I435ab9f88f73a73d7dc02f604f05e6f6def02eb5
This commit is contained in:
Pierre Riteau 2019-07-01 19:51:28 +01:00
parent 67a4d50288
commit 77170a8547
3 changed files with 12 additions and 1 deletions

View File

@ -64,6 +64,10 @@ kolla_openstack_custom_config:
dest: "{{ kolla_node_custom_config_path }}/haproxy"
patterns: "*"
enabled: "{{ kolla_enable_haproxy }}"
- src: "{{ kolla_extra_config_path }}/haproxy-config"
dest: "{{ kolla_node_custom_config_path }}/haproxy-config"
patterns: "*"
enabled: "{{ kolla_enable_haproxy }}"
# Heat.
- src: "{{ kolla_extra_config_path }}/heat"
dest: "{{ kolla_node_custom_config_path }}/heat"

View File

@ -165,7 +165,8 @@ which files are supported.
``glance.conf`` Glance configuration.
``glance/*`` Extended Glance configuration.
``grafana/*`` Extended Grafana configuration.
``haproxy/*`` HAProxy configuration.
``haproxy/*`` Main HAProxy configuration.
``haproxy-config/*`` Modular HAProxy configuration.
``heat.conf`` Heat configuration.
``heat/*`` Extended heat configuration.
``horizon/*`` Extended horizon configuration.

View File

@ -0,0 +1,6 @@
---
features:
- |
Adds support for customising the refactored HAProxy configuration
introduced in Kolla Ansible in the Stein release, using
``$KAYOBE_CONFIG_PATH/kolla/config/haproxy-config/``.