Fix indentation in haproxy config
Commit [1] introduced a bug into kolla-ansible
where there is incorrect indentation in the haproxy
configuration file. This patch fixes it.
[1] b13fa5a92c
Closes-Bug: #2080034
Change-Id: I3375e303bc358fc79d1fa2e219e6ec1dba7a38ba
This commit is contained in:
parent
d62523f778
commit
757319f0c6
@ -11,7 +11,9 @@ global
|
||||
cpu-map auto:1/all 0-63
|
||||
{% endif %}
|
||||
{% if kolla_enable_tls_external | bool or kolla_enable_tls_internal | bool %}
|
||||
{{ haproxy_ssl_settings }}
|
||||
{% for line in haproxy_ssl_settings.split('\n') %}
|
||||
{{ line }}
|
||||
{% endfor %}
|
||||
tune.ssl.default-dh-param 4096
|
||||
ca-base {{ haproxy_backend_cacert_dir }}
|
||||
{% endif %}
|
||||
|
@ -13,7 +13,9 @@ global
|
||||
stats socket /var/lib/kolla/haproxy/haproxy.sock group kolla mode 660{% if haproxy_socket_level_admin | bool %} level admin{% endif %}
|
||||
|
||||
{% if kolla_enable_tls_external | bool or kolla_enable_tls_internal | bool %}
|
||||
{{ haproxy_ssl_settings }}
|
||||
{% for line in haproxy_ssl_settings.split('\n') %}
|
||||
{{ line }}
|
||||
{% endfor %}
|
||||
tune.ssl.default-dh-param 4096
|
||||
ca-base {{ haproxy_backend_cacert_dir }}
|
||||
{% endif %}
|
||||
|
@ -11,7 +11,9 @@ global
|
||||
cpu-map auto:1/all 0-63
|
||||
{% endif %}
|
||||
{% if kolla_enable_tls_external | bool or kolla_enable_tls_internal | bool %}
|
||||
{{ haproxy_ssl_settings }}
|
||||
{% for line in haproxy_ssl_settings.split('\n') %}
|
||||
{{ line }}
|
||||
{% endfor %}
|
||||
tune.ssl.default-dh-param 4096
|
||||
ca-base {{ haproxy_backend_cacert_dir }}
|
||||
{% endif %}
|
||||
|
5
releasenotes/notes/bug-2080034-b217a4200a6c6eda.yaml
Normal file
5
releasenotes/notes/bug-2080034-b217a4200a6c6eda.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
fixes:
|
||||
- |
|
||||
Fixes indentation in haproxy configuration.
|
||||
`LP#2080034 <https://launchpad.net/bugs/2080034>`__
|
Loading…
Reference in New Issue
Block a user