Configure RPC settings for all neutron components

The RPC configuration is required for Neutron agents
too in order to use the same settings as the Neutron
server. Inconsitent RPC configuration will lead to
issue like olso.messaging timeouts.

Change-Id: Iaf3e16088dad586e248bd3dac5ab3a87c011f3fb
Closed-Bug: #1666765
This commit is contained in:
Bjoern Teipel 2017-02-21 23:26:25 -06:00
parent a8c9d1cf3f
commit 2cce5e6e8f
1 changed files with 6 additions and 6 deletions

View File

@ -12,6 +12,12 @@ debug = {{ debug }}
fatal_deprecations = {{ neutron_fatal_deprecations }}
log_file = /var/log/neutron/neutron.log
## Rpc all
rpc_backend = {{ neutron_rpc_backend }}
executor_thread_pool_size = {{ neutron_rpc_thread_pool_size }}
rpc_conn_pool_size = {{ neutron_rpc_conn_pool_size }}
rpc_response_timeout = {{ neutron_rpc_response_timeout }}
{% if inventory_hostname in groups[neutron_services['neutron-server']['group']] %}
# General, only applies to neutron server host group
@ -87,12 +93,6 @@ notify_nova_on_port_data_changes = True
send_events_interval = 2
nova_url = {{ nova_service_adminurl|replace('/%(tenant_id)s', '') }}
## Rpc all
rpc_backend = {{ neutron_rpc_backend }}
executor_thread_pool_size = {{ neutron_rpc_thread_pool_size }}
rpc_conn_pool_size = {{ neutron_rpc_conn_pool_size }}
rpc_response_timeout = {{ neutron_rpc_response_timeout }}
[nova]
auth_plugin = {{ nova_keystone_auth_plugin }}
auth_url = {{ keystone_service_adminurl }}