From 13c7c6922e9d4bef739c63efb1ee9ffce838443e Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Thu, 15 Jun 2023 21:18:45 +0200 Subject: [PATCH] Allow the use of more than one external certificate file Signed-off-by: Christian Berendt --- patches/zed/multiple-haproxy-certificates.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 patches/zed/multiple-haproxy-certificates.patch diff --git a/patches/zed/multiple-haproxy-certificates.patch b/patches/zed/multiple-haproxy-certificates.patch new file mode 100644 index 00000000..289531c9 --- /dev/null +++ b/patches/zed/multiple-haproxy-certificates.patch @@ -0,0 +1,13 @@ +--- a/ansible/roles/loadbalancer/templates/haproxy/haproxy.json.j2 ++++ b/ansible/roles/loadbalancer/templates/haproxy/haproxy.json.j2 +@@ -20,8 +20,8 @@ + "perm": "0700" + }, + { +- "source": "{{ container_config_directory }}/haproxy.pem", +- "dest": "/etc/haproxy/haproxy.pem", ++ "source": "{{ container_config_directory }}/haproxy*.pem", ++ "dest": "/etc/haproxy", + "owner": "root", + "perm": "0600", + "optional": {{ (not kolla_enable_tls_external | bool) | string | lower }}