diff --git a/docker/services/mistral-executor.yaml b/docker/services/mistral-executor.yaml index 85acd48de5..1c7c0c70e4 100644 --- a/docker/services/mistral-executor.yaml +++ b/docker/services/mistral-executor.yaml @@ -89,6 +89,9 @@ outputs: - path: /var/log/mistral owner: mistral:mistral recurse: true + - path: /var/lib/mistral + owner: mistral:mistral + recurse: true docker_config: step_4: mistral_executor: @@ -110,6 +113,7 @@ outputs: # exclude this on the overcloud for security reasons. - /var/lib/config-data/nova/etc/nova:/etc/nova:ro - /var/log/containers/mistral:/var/log/mistral + - /var/lib/mistral:/var/lib/mistral environment: - KOLLA_CONFIG_STRATEGY=COPY_ALWAYS host_prep_tasks: diff --git a/releasenotes/notes/mistral_container-23c4432aad469f30.yaml b/releasenotes/notes/mistral_container-23c4432aad469f30.yaml new file mode 100644 index 0000000000..8ccc005694 --- /dev/null +++ b/releasenotes/notes/mistral_container-23c4432aad469f30.yaml @@ -0,0 +1,6 @@ +--- +features: + - | + When containerizing mistral-executor, we need to mount /var/lib/mistral so + our operators can get the config-download logs when the undercloud is + containerized and config-download is used to deploy the overcloud.