543f8463e6
This tells the db sync to use stdout instead of a specific log file when stdout logging is enabled bp logging-stdout-rsyslog Depends-On: Id9e8c641a6b00725d2f5c9623b05854a1b4e2af2 Change-Id: I25d15aac6adfab1dfd11d558404930736aace977
65 lines
2.4 KiB
YAML
65 lines
2.4 KiB
YAML
heat_template_version: pike
|
|
|
|
description: >
|
|
OpenStack containerized Keystone service
|
|
|
|
parameters:
|
|
DockerKeystoneImage:
|
|
description: image
|
|
type: string
|
|
|
|
outputs:
|
|
config_settings:
|
|
description: Extra hieradata needed to log to stdout.
|
|
value:
|
|
keystone::wsgi::apache::access_log_file: /var/log/httpd/access.log
|
|
keystone::wsgi::apache::error_log_file: /var/log/httpd/error_log
|
|
docker_config:
|
|
description: Extra containers needed for logging to stdout or a sidecar container.
|
|
value:
|
|
step_2:
|
|
keystone_apache_error_logs:
|
|
start_order: 1
|
|
image: {get_param: DockerKeystoneImage}
|
|
user: root
|
|
privileged: false
|
|
restart: always
|
|
healthcheck:
|
|
test: '[ -p /var/log/httpd/error_log ]'
|
|
command: ['/bin/bash', '-c', 'mkdir -p /var/log/httpd && rm -f /var/log/httpd/error_log && mkfifo /var/log/httpd/error_log && while true; do cat /var/log/httpd/error_log; done']
|
|
volumes:
|
|
- KeystoneLogs:/var/log/
|
|
keystone_apache_access_logs:
|
|
start_order: 1
|
|
image: {get_param: DockerKeystoneImage}
|
|
user: root
|
|
privileged: false
|
|
restart: always
|
|
healthcheck:
|
|
test: '[ -p /var/log/httpd/access.log ]'
|
|
command: ['/bin/bash', '-c', 'mkdir -p /var/log/httpd && rm -f /var/log/httpd/access.log && mkfifo /var/log/httpd/access.log && while true; do cat /var/log/httpd/access.log; done']
|
|
volumes:
|
|
- KeystoneLogs:/var/log/
|
|
keystone_logs:
|
|
start_order: 2
|
|
image: {get_param: DockerKeystoneImage}
|
|
user: keystone
|
|
privileged: false
|
|
restart: always
|
|
healthcheck:
|
|
test: '[ -p /var/log/keystone/keystone.log ]'
|
|
command: ['/bin/bash', '-c', 'mkdir -p /var/log/keystone && rm -f /var/log/keystone/keystone.log && mkfifo /var/log/keystone/keystone.log && while true; do cat /var/log/keystone/keystone.log; done']
|
|
volumes:
|
|
- KeystoneLogs:/var/log/
|
|
environment:
|
|
description: Extra environment variables needed for the service to log to stdout.
|
|
value:
|
|
- EXTRA_KEYSTONE_MANAGE_ARGS=--log-dir= --log-file=
|
|
volumes:
|
|
description: The volumes needed to log to stdout or a sidecar container.
|
|
value:
|
|
- KeystoneLogs:/var/log/
|
|
host_prep_tasks:
|
|
description: Extra ansible tasks needed for logging to files in the host.
|
|
value: null
|