94bc023390
Almost every single tripleo service creates a persistent directory. To simplify the creation, a with_items structure was being used. In which many times, the mode option was being set. However, that mode option was not taken into account at the time of creating the file. As a consequence, the directory was being created with its father directory rights, instead of the ones being passed in the template. Change-Id: I215db2bb79029c19ab8c62a7ae8d93cec50fb8dc Closes-Bug: #1871231
73 lines
2.1 KiB
YAML
73 lines
2.1 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
Template for nova's logging to files
|
|
|
|
parameters:
|
|
ContainerNovaImage:
|
|
description: image
|
|
type: string
|
|
NovaServiceName:
|
|
description: service name
|
|
type: string
|
|
DeployIdentifier:
|
|
default: ''
|
|
type: string
|
|
description: >
|
|
Setting this to a unique value will re-run any deployment tasks which
|
|
perform configuration on a Heat stack-update.
|
|
|
|
resources:
|
|
|
|
InitLogContainerName:
|
|
type: OS::Heat::Value
|
|
properties:
|
|
type: string
|
|
value:
|
|
str_replace:
|
|
template: nova_SERVICE_init_log
|
|
params:
|
|
SERVICE: {get_param: NovaServiceName}
|
|
|
|
outputs:
|
|
cmd_extra_args:
|
|
description: Extra command line arguments for running the service in the container.
|
|
value: ''
|
|
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:
|
|
- /var/log/containers/nova:/var/log/nova
|
|
docker_config:
|
|
description: Extra containers needed for logging to files in the host.
|
|
value:
|
|
step_2:
|
|
map_replace:
|
|
- CONTAINERNAME:
|
|
image: {get_param: ContainerNovaImage}
|
|
net: none
|
|
privileged: false
|
|
user: root
|
|
volumes:
|
|
- /var/log/containers/nova:/var/log/nova:z
|
|
command: ['/bin/bash', '-c', 'chown -R nova:nova /var/log/nova']
|
|
environment:
|
|
# NOTE: this should force this container to re-run on each
|
|
# update (scale-out, etc.)
|
|
TRIPLEO_DEPLOY_IDENTIFIER: {get_param: DeployIdentifier}
|
|
- keys:
|
|
CONTAINERNAME: {get_attr: [InitLogContainerName, value]}
|
|
host_prep_tasks:
|
|
description: Extra ansible tasks needed for logging to files in the host.
|
|
value:
|
|
- name: create persistent directories
|
|
file:
|
|
path: "{{ item.path }}"
|
|
setype: "{{ item.setype }}"
|
|
state: directory
|
|
mode: "{{ item.mode }}"
|
|
with_items:
|
|
- { 'path': /var/log/containers/nova, 'setype': container_file_t, 'mode': '0750' }
|