Merge "Adds LibvirtLogFilters to define a libvirtd filter" into stable/rocky

This commit is contained in:
Zuul 2019-08-28 00:01:40 +00:00 committed by Gerrit Code Review
commit fd7f3adae0
2 changed files with 15 additions and 0 deletions

View File

@ -130,6 +130,12 @@ parameters:
description: The password for the libvirt service when TLS is enabled description: The password for the libvirt service when TLS is enabled
type: string type: string
hidden: true hidden: true
LibvirtLogFilters:
description: Defines a filter to select a different logging level
for a given category log outputs, as specified in
https://libvirt.org/logging.html .
type: string
default: '1:libvirt 1:qemu 1:conf 1:security 3:event 3:json 3:file 3:object 1:util'
conditions: conditions:
@ -218,6 +224,7 @@ outputs:
"%{hiera('$NETWORK')}" "%{hiera('$NETWORK')}"
params: params:
$NETWORK: {get_param: [ServiceNetMap, NovaLibvirtNetwork]} $NETWORK: {get_param: [ServiceNetMap, NovaLibvirtNetwork]}
nova::compute::libvirt::log_filters: {get_param: LibvirtLogFilters}
rbd_persistent_storage: {get_param: CinderEnableRbdBackend} rbd_persistent_storage: {get_param: CinderEnableRbdBackend}
tripleo.nova_libvirt.firewall_rules: tripleo.nova_libvirt.firewall_rules:
'200 nova_libvirt': '200 nova_libvirt':

View File

@ -0,0 +1,8 @@
---
features:
- |
Adds LibvirtLogFilters parameter to define a filter to select
a different logging level for a given category log outputs, as
specified in https://libvirt.org/logging.html .
Default:
'1:libvirt 1:qemu 1:conf 1:security 3:event 3:json 3:file 3:object 1:util'