Merge "Ensure /var/run/octavia is present upon reboot"

This commit is contained in:
Zuul 2020-02-18 21:59:31 +00:00 committed by Gerrit Code Review
commit 0733697b83
2 changed files with 11 additions and 1 deletions

View File

@ -352,7 +352,12 @@ outputs:
with_items:
- { 'path': /var/log/containers/octavia, 'setype': container_file_t, 'mode': '0750' }
- { 'path': /var/log/containers/httpd/octavia-api, 'setype': container_file_t, 'mode': '0750' }
- { 'path': /var/run/octavia, 'setype': container_file_t, 'mode': '0750' }
- { 'path': /var/run/octavia, 'setype': container_file_t, 'mode': '0755' }
- name: ensure /var/run/octavia is present upon reboot
copy:
dest: /etc/tmpfiles.d/var-run-octavia.conf
content: |
d /var/run/octavia 0755 root root - -
update_tasks:
- name: Set internal tls variable
set_fact:

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixed an issue where containers octavia_api and octavia_driver_agent would
fail to start on node reboot.