tripleo-heat-templates/deployment/logging/files/keystone.yaml

46 lines
1.5 KiB
YAML

heat_template_version: rocky
description: >
OpenStack containerized Keystone service
parameters:
ContainerKeystoneImage:
description: image
type: string
outputs:
config_settings:
description: Extra hieradata needed to log to files in the host.
value: null
volumes:
description: The volumes needed to log to files in the host.
value: &keystone_volumes
- /var/log/containers/keystone:/var/log/keystone:z
- /var/log/containers/httpd/keystone:/var/log/httpd:z
docker_config:
description: Extra containers needed for logging to files in the host.
value:
step_2:
keystone_init_log:
start_order: 1
image: {get_param: ContainerKeystoneImage}
net: none
user: root
command: ['/bin/bash', '-c', 'chown -R keystone:keystone /var/log/keystone']
volumes: *keystone_volumes
environment:
description: Extra environment variables needed for the service to log to files.
value: null
host_prep_tasks:
description: Extra ansible tasks needed for logging to files in the host.
value:
- name: create persistent directories
file:
path: "{{ item.path }}"
state: directory
setype: "{{ item.setype }}"
mode: "{{ item.mode }}"
with_items:
- { 'path': /var/log/containers/keystone, 'setype': container_file_t, 'mode': '0750' }
- { 'path': /var/log/containers/httpd/keystone, 'setype': container_file_t, 'mode': '0750' }