keystone: log errors to stdout

This ensures all errors go to the kubernetes logs and not to a file in
the container when something happens outside of the virtualhost.

Change-Id: If2ceef3591eeb2f735b26bb8b115b18467f98c22
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
This commit is contained in:
Doug Goldstein
2025-12-09 10:27:49 -06:00
parent 29619a97b0
commit 67d572ae99
2 changed files with 8 additions and 0 deletions

View File

@@ -788,6 +788,8 @@ conf:
SetEnvIf X-Forwarded-For "^.*\..*\..*\..*" forwarded
CustomLog /dev/stdout combined env=!forwarded
CustomLog /dev/stdout proxy env=forwarded
ErrorLogFormat "%{cu}t %M"
ErrorLog /dev/stdout
<VirtualHost *:{{ $portInt }}>
WSGIDaemonProcess keystone-public processes=1 threads=1 user=keystone group=keystone display-name=%{GROUP}

View File

@@ -0,0 +1,6 @@
---
keystone:
- |
Ensure all errors go to the kubenertes logs and not to a file in the
container.
...