Merge "Fix for external-frontend-map file not being copied"
This commit is contained in:
@@ -18,14 +18,14 @@
|
|||||||
"dest": "/etc/haproxy/services.d",
|
"dest": "/etc/haproxy/services.d",
|
||||||
"owner": "root",
|
"owner": "root",
|
||||||
"perm": "0700"
|
"perm": "0700"
|
||||||
}{% if kolla_enable_tls_external | bool %},
|
},
|
||||||
{
|
{
|
||||||
"source": "{{ container_config_directory }}/external-frontend-map",
|
"source": "{{ container_config_directory }}/external-frontend-map",
|
||||||
"dest": "/etc/haproxy/external-frontend-map",
|
"dest": "/etc/haproxy/external-frontend-map",
|
||||||
"owner": "root",
|
"owner": "root",
|
||||||
"perm": "0600",
|
"perm": "0600",
|
||||||
"optional": {{ (not haproxy_single_external_frontend | bool) | string | lower }}
|
"optional": {{ (not haproxy_single_external_frontend | bool) | string | lower }}
|
||||||
}{% endif %}{% if kolla_enable_tls_external and letsencrypt_managed_certs == 'internal' or letsencrypt_managed_certs == '' %},
|
}{% if kolla_enable_tls_external and letsencrypt_managed_certs == 'internal' or letsencrypt_managed_certs == '' %},
|
||||||
{
|
{
|
||||||
"source": "{{ container_config_directory }}/haproxy.pem",
|
"source": "{{ container_config_directory }}/haproxy.pem",
|
||||||
"dest": "/etc/haproxy/certificates/haproxy.pem",
|
"dest": "/etc/haproxy/certificates/haproxy.pem",
|
||||||
|
@@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
Fixes haproxy does not copy external-frontend-map file unless
|
||||||
|
kolla_enable_tls_external is set to true.
|
||||||
|
Removed <if> condition preventing external-frontend-map file
|
||||||
|
from being copied into haproxy container when external TLS is
|
||||||
|
not enabled.
|
||||||
|
`LP#2098765 <https://launchpad.net/bugs/2098765>`__
|
@@ -270,6 +270,7 @@
|
|||||||
voting: false
|
voting: false
|
||||||
files: !inherit
|
files: !inherit
|
||||||
- ^ansible/roles/haproxy/
|
- ^ansible/roles/haproxy/
|
||||||
|
- ^ansible/roles/loadbalancer/
|
||||||
- ^kolla_ansible/kolla_url.py
|
- ^kolla_ansible/kolla_url.py
|
||||||
vars:
|
vars:
|
||||||
external_api_interface_name: vxlan2
|
external_api_interface_name: vxlan2
|
||||||
|
Reference in New Issue
Block a user