Merge "Support for libvirt volume multipath" into stable/queens

This commit is contained in:
Zuul 2018-11-22 21:48:10 +00:00 committed by Gerrit Code Review
commit 028a6ec50e
2 changed files with 15 additions and 0 deletions

View File

@ -158,6 +158,12 @@ parameters:
- allowed_values: [ 256, 512, 1024 ]
tags:
- role_specific
NovaLibvirtVolumeUseMultipath:
default: false
description: Whether to enable or not the multipath connection of the volumes.
type: boolean
tags:
- role_specific
conditions:
enable_live_migration_tunnelled:
@ -189,12 +195,14 @@ resources:
nova::compute::reserved_host_memory: NovaReservedHostMemory
nova::compute::libvirt::rx_queue_size: NovaLibvirtRxQueueSize
nova::compute::libvirt::tx_queue_size: NovaLibvirtTxQueueSize
nova::compute::libvirt::volume_use_multipath: NovaLibvirtVolumeUseMultipath
- values: {get_param: [RoleParameters]}
- values:
NovaVcpuPinSet: {get_param: NovaVcpuPinSet}
NovaReservedHostMemory: {get_param: NovaReservedHostMemory}
NovaLibvirtRxQueueSize: {get_param: NovaLibvirtRxQueueSize}
NovaLibvirtTxQueueSize: {get_param: NovaLibvirtTxQueueSize}
NovaLibvirtVolumeUseMultipath: {get_param: NovaLibvirtVolumeUseMultipath}
outputs:
role_data:

View File

@ -0,0 +1,7 @@
---
features:
- |
Add support for libvirt volume_use_multipath the ability to
use multipath connection of the iSCSI or FC volume.
Volumes can be connected in the LibVirt as multipath devices.
Adds new parameter "NovaLibvirtVolumeUseMultipath".