
Libvirt setting for (admin_/)max_client_requests is an important configuration to be tweaked when serving long running requests. Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com> Change-Id: I2d0ab2472f940ef6edac662e167033881ab09086
68 lines
2.2 KiB
Puppet
68 lines
2.2 KiB
Puppet
# == Class: nova::compute::libvirt::virtsecretd
|
|
#
|
|
# virtsecretd configuration
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*log_level*]
|
|
# Defines a log level to filter log outputs.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*log_filters*]
|
|
# Defines a log filter to select a different logging level for
|
|
# for a given category log outputs.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*log_outputs*]
|
|
# (optional) Defines log outputs, as specified in
|
|
# https://libvirt.org/logging.html
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*max_clients*]
|
|
# The maximum number of concurrent client connections to allow
|
|
# on primary socket.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*admin_max_clients*]
|
|
# The maximum number of concurrent client connections to allow
|
|
# on administrative socket.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*max_client_requests*]
|
|
# Limit on concurrent requests from a single client connection.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*admin_max_client_requests*]
|
|
# Limit on concurrent requests from a single client connection
|
|
# for the admin interface.
|
|
# Defaults to $::os_service_default
|
|
#
|
|
# [*ovs_timeout*]
|
|
# (optional) A timeout for openvswitch calls made by libvirt
|
|
# Defaults to $::os_service_default
|
|
#
|
|
class nova::compute::libvirt::virtsecretd (
|
|
$log_level = $::os_service_default,
|
|
$log_filters = $::os_service_default,
|
|
$log_outputs = $::os_service_default,
|
|
$max_clients = $::os_service_default,
|
|
$admin_max_clients = $::os_service_default,
|
|
$max_client_requests = $::os_service_default,
|
|
$admin_max_client_requests = $::os_service_default,
|
|
$ovs_timeout = $::os_service_default,
|
|
) {
|
|
|
|
include nova::deps
|
|
|
|
virtsecretd_config {
|
|
'log_level': value => $log_level;
|
|
'log_filters': value => $log_filters, quote => true;
|
|
'log_outputs': value => $log_outputs, quote => true;
|
|
'max_clients': value => $max_clients;
|
|
'admin_max_clients': value => $admin_max_clients;
|
|
'max_client_requests': value => $max_client_requests;
|
|
'admin_max_client_requests': value => $admin_max_client_requests;
|
|
'ovs_timeout': value => $ovs_timeout;
|
|
}
|
|
}
|