Merge "Support customising Nova config at the individual service level"

This commit is contained in:
Zuul 2023-09-18 14:29:28 +00:00 committed by Gerrit Code Review
commit 1bd1517d27
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.