Expose executor_thread_pool_size
This option has been supported by puppet-oslo but has not been configurable. Change-Id: I4608f080b860465c8f8e81127ec282bc0c065ace
This commit is contained in:
parent
d02d2dd124
commit
d98c5f61b9
@ -24,6 +24,10 @@
|
||||
# option.
|
||||
# Defaults to $facts['os_service_default']
|
||||
#
|
||||
# [*executor_thread_pool_size*]
|
||||
# (Optional) Size of executor thread pool when executor is threading or eventlet.
|
||||
# Defaults to $facts['os_service_default'].
|
||||
#
|
||||
# [*rabbit_use_ssl*]
|
||||
# (optional) Connect over SSL for RabbitMQ
|
||||
# Defaults to $facts['os_service_default']
|
||||
@ -185,6 +189,7 @@ class octavia (
|
||||
$default_transport_url = $facts['os_service_default'],
|
||||
$rpc_response_timeout = $facts['os_service_default'],
|
||||
$control_exchange = $facts['os_service_default'],
|
||||
$executor_thread_pool_size = $facts['os_service_default'],
|
||||
$rabbit_use_ssl = $facts['os_service_default'],
|
||||
$rabbit_heartbeat_timeout_threshold = $facts['os_service_default'],
|
||||
$rabbit_heartbeat_rate = $facts['os_service_default'],
|
||||
@ -268,6 +273,7 @@ class octavia (
|
||||
}
|
||||
|
||||
oslo::messaging::default { 'octavia_config':
|
||||
executor_thread_pool_size => $executor_thread_pool_size,
|
||||
transport_url => $default_transport_url,
|
||||
rpc_response_timeout => $rpc_response_timeout,
|
||||
control_exchange => $control_exchange,
|
||||
|
@ -0,0 +1,4 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
The new ``octavia::executor_thread_pool_size`` parameter has been added.
|
@ -29,6 +29,7 @@ describe 'octavia' do
|
||||
|
||||
it 'configures rabbit' do
|
||||
should contain_oslo__messaging__default('octavia_config').with(
|
||||
:executor_thread_pool_size => '<SERVICE DEFAULT>',
|
||||
:transport_url => '<SERVICE DEFAULT>',
|
||||
:rpc_response_timeout => '<SERVICE DEFAULT>',
|
||||
:control_exchange => '<SERVICE DEFAULT>',
|
||||
@ -82,6 +83,7 @@ describe 'octavia' do
|
||||
:default_transport_url => 'rabbit://rabbit_user:password@localhost:5673',
|
||||
:rpc_response_timeout => '120',
|
||||
:control_exchange => 'octavia',
|
||||
:executor_thread_pool_size => 64,
|
||||
:rabbit_ha_queues => true,
|
||||
:rabbit_heartbeat_timeout_threshold => '60',
|
||||
:rabbit_heartbeat_rate => '10',
|
||||
@ -100,6 +102,7 @@ describe 'octavia' do
|
||||
|
||||
it 'configures rabbit' do
|
||||
should contain_oslo__messaging__default('octavia_config').with(
|
||||
:executor_thread_pool_size => 64,
|
||||
:transport_url => 'rabbit://rabbit_user:password@localhost:5673',
|
||||
:rpc_response_timeout => '120',
|
||||
:control_exchange => 'octavia',
|
||||
|
Loading…
Reference in New Issue
Block a user