Merge "Fix Octavia certificate file path and content" into stable/queens

This commit is contained in:
Zuul 2020-02-13 21:28:36 +00:00 committed by Gerrit Code Review
commit 5f127763ca
2 changed files with 10 additions and 4 deletions

View File

@ -10,13 +10,13 @@
become: true
copy:
content: "{{ item.content }}"
dest: "{{ octavia_confd_prefix }}{{ item.path }}"
dest: "{{ octavia_confd_prefix }}/{{ item.path }}"
selevel: s0
setype: svirt_sandbox_file_t
no_log: true
loop:
- { content: private_key_content, path: ca_private_key_path }
- { content: ca_cert_content, path: ca_cert_path }
- { content: service_pem_content, path: client_cert_path }
- { content: "{{ private_key_content }}", path: "{{ ca_private_key_path }}" }
- { content: "{{ ca_cert_content }}", path: "{{ ca_cert_path }}" }
- { content: "{{ service_pem_content }}" , path: "{{ client_cert_path }}" }
notify:
- octavia config updated

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixed an issue were amphora load balancers would fail to create. The
problem was because Octavia certificate files were being created in a wrong
path and with invalid content.