@ -147,6 +147,11 @@
# (optional) Maximum number of greenthreads to use when syncing power states.
# Defaults to $::os_service_default
#
# [*sync_power_state_interval*]
# (optional) Interval to sync power states between the database and the hypervisor. Set
# to -1 to disable. Setting this to 0 will run at the default rate.
# Defaults to $::os_service_default
#
# [*consecutive_build_service_disable_threshold*]
# (optional) Max number of consecutive build failures before the nova-compute
# will disable itself.
@ -215,6 +220,7 @@ class nova::compute (
$barbican_api_version = $::os_service_default,
$max_concurrent_live_migrations = $::os_service_default,
$sync_power_state_pool_size = $::os_service_default,
$sync_power_state_interval = $::os_service_default,
$consecutive_build_service_disable_threshold = $::os_service_default,
$keymgr_backend = 'nova.keymgr.conf_key_mgr.ConfKeyManager' ,
$verify_glance_signatures = $::os_service_default,
@ -307,6 +313,7 @@ class nova::compute (
'barbican/barbican_api_version' : value => $barbican_api_version;
'DEFAULT/max_concurrent_live_migrations' : value => $max_concurrent_live_migrations;
'DEFAULT/sync_power_state_pool_size' : value => $sync_power_state_pool_size;
'DEFAULT/sync_power_state_interval' : value => $sync_power_state_interval;
'compute/consecutive_build_service_disable_threshold' :
value => $consecutive_build_service_disable_threshold;
}