a68151d02a
This converts all Docker*Image parameter varients into Container*Image varients. The commit was autogenerated with the following shell commands: for file in $(grep -lr Docker.*Image --include \*.yaml --exclude-dir releasenotes); do sed -e "s|Docker\([^ ]*Image\)|Container\1|g" -i $file done Change-Id: Iab06efa5616975b99aa5772a65b415629f8d7882 Depends-On: I7d62a3424ccb7b01dc101329018ebda896ea8ff3 Depends-On: Ib1dc0c08ce7971a03639acc42b1e738d93a52f98
65 lines
2.4 KiB
YAML
65 lines
2.4 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
OpenStack containerized Barbican service
|
|
|
|
parameters:
|
|
ContainerBarbicanApiImage:
|
|
description: image
|
|
type: string
|
|
|
|
outputs:
|
|
cmd_extra_args:
|
|
description: Extra command line arguments for running the service in the container.
|
|
value: "--log-dir= --log-file="
|
|
config_settings:
|
|
description: Extra hieradata needed to log to stdout.
|
|
value:
|
|
barbican::wsgi::apache::access_log_file: /var/log/httpd/access.log
|
|
barbican::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:
|
|
barbican_api_apache_error_logs:
|
|
start_order: 1
|
|
image: {get_param: ContainerBarbicanApiImage}
|
|
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:
|
|
- BarbicanApiLogs:/var/log/
|
|
barbican_api_apache_access_logs:
|
|
start_order: 1
|
|
image: {get_param: ContainerBarbicanApiImage}
|
|
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:
|
|
- BarbicanApiLogs:/var/log/
|
|
barbican_api_logs:
|
|
start_order: 2
|
|
image: {get_param: ContainerBarbicanApiImage}
|
|
user: barbican
|
|
privileged: false
|
|
restart: always
|
|
healthcheck:
|
|
test: '[ -p /var/log/barbican/main.log ]'
|
|
command: ['/bin/bash', '-c', 'mkdir -p /var/log/barbican && rm -f /var/log/barbican/main.log && mkfifo /var/log/barbican/main.log && while true; do cat /var/log/barbican/main.log; done']
|
|
volumes:
|
|
- BarbicanApiLogs:/var/log/
|
|
volumes:
|
|
description: The volumes needed to log to stdout or a sidecar container.
|
|
value:
|
|
- BarbicanApiLogs:/var/log/
|
|
host_prep_tasks:
|
|
description: Extra ansible tasks needed for logging to files in the host.
|
|
value: null
|
|
|