Merge "Fix glance-api failed to start privsep daemon"

This commit is contained in:
Zuul 2023-11-22 15:37:17 +00:00 committed by Gerrit Code Review
commit bad6759ee4
2 changed files with 8 additions and 1 deletions

View File

@ -7,7 +7,7 @@ glance_services:
enabled: true
image: "{{ glance_api_image_full }}"
environment: "{{ glance_api_container_proxy }}"
privileged: "{{ enable_cinder | bool and enable_cinder_backend_iscsi | bool }}"
privileged: "{{ enable_cinder | bool and (enable_cinder_backend_iscsi | bool or cinder_backend_ceph | bool) }}"
volumes: "{{ glance_api_default_volumes + glance_api_extra_volumes }}"
dimensions: "{{ glance_api_dimensions }}"
healthcheck: "{{ glance_api_healthcheck }}"

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Fixes glance-api failed to start privsep daemon when
cinder_backend_ceph is set to true.
See `LP#2024541 <https://launchpad.net/bugs/2024541>`__
for more details.