Make NovaLibvirtOptVolumes role specific

Since it's common for users to deploy multiple types of compute nodes,
we should make the opt volumes role specific to allow for customization
based on the role being deployed.

Change-Id: Ie9d68fe1a0c3e05c7fc31c3fea79d6019281886b
Related-Bug: #1897265
(cherry picked from commit 5d0f624d87)
This commit is contained in:
Alex Schultz 2020-10-01 08:14:44 -06:00 committed by Rajesh Tailor
parent 67d2e075ff
commit 76e3a68806
1 changed files with 5 additions and 1 deletions

View File

@ -240,6 +240,8 @@ parameters:
default: [] default: []
description: list of optional volumes to be mounted description: list of optional volumes to be mounted
type: comma_delimited_list type: comma_delimited_list
tags:
- role_specific
conditions: conditions:
@ -333,10 +335,12 @@ resources:
- map_replace: - map_replace:
- vhostuser_socket_group: VhostuserSocketGroup - vhostuser_socket_group: VhostuserSocketGroup
nova::compute::libvirt::qemu::memory_backing_dir: QemuMemoryBackingDir nova::compute::libvirt::qemu::memory_backing_dir: QemuMemoryBackingDir
nova_libvirt_opt_volumes: NovaLibvirtOptVolumes
- values: {get_param: [RoleParameters]} - values: {get_param: [RoleParameters]}
- values: - values:
VhostuserSocketGroup: {get_param: VhostuserSocketGroup} VhostuserSocketGroup: {get_param: VhostuserSocketGroup}
QemuMemoryBackingDir: {get_param: QemuMemoryBackingDir} QemuMemoryBackingDir: {get_param: QemuMemoryBackingDir}
NovaLibvirtOptVolumes: {get_param: NovaLibvirtOptVolumes}
ContainersCommon: ContainersCommon:
@ -712,7 +716,7 @@ outputs:
list_concat: list_concat:
- {get_attr: [ContainersCommon, volumes]} - {get_attr: [ContainersCommon, volumes]}
- {get_attr: [NovaLibvirtLogging, volumes]} - {get_attr: [NovaLibvirtLogging, volumes]}
- {get_param: NovaLibvirtOptVolumes} - {get_attr: [RoleParametersValue, value, nova_libvirt_opt_volumes]}
- -
- /etc/ssh/ssh_known_hosts:/etc/ssh/ssh_known_hosts:ro - /etc/ssh/ssh_known_hosts:/etc/ssh/ssh_known_hosts:ro
- /var/lib/kolla/config_files/nova_libvirt.json:/var/lib/kolla/config_files/config.json:ro - /var/lib/kolla/config_files/nova_libvirt.json:/var/lib/kolla/config_files/config.json:ro