Support customising Nova config at the individual service level

For example, an operator may wish to customise the
nova-compute-ironic service configuration without affecting
other Nova services.

Closes-Bug: #2034949

Change-Id: If8648d8e85ab3dbcbb4ecba674b2e34b06898327
This commit is contained in:
John Garbutt 2023-09-08 14:21:58 +01:00 committed by Doug Szumski
parent 0fc3418b8f
commit 69a6782329
2 changed files with 6 additions and 0 deletions

View File

@ -64,6 +64,7 @@
- "{{ node_custom_config }}/nova.conf"
- "{{ node_custom_config }}/nova/{{ item.key }}.conf"
- "{{ node_custom_config }}/nova/{{ inventory_hostname }}/nova.conf"
- "{{ node_custom_config }}/nova/{{ inventory_hostname }}/{{ item.key }}.conf"
dest: "{{ node_config_directory }}/{{ item.key }}/nova.conf"
mode: "0660"
when:

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes an issue where it wasn't possible to customise Nova service config
at the individual service level, which is required in some use cases.