Skip to content
Snippets Groups Projects
Commit 4510c525 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Set neutron RPC workers and state report workers"

parents 0572a394 d2f72599
No related branches found
No related tags found
No related merge requests found
...@@ -287,6 +287,7 @@ multiple_regions_names: ...@@ -287,6 +287,7 @@ multiple_regions_names:
- "{{ openstack_region_name }}" - "{{ openstack_region_name }}"
openstack_service_workers: "{{ [ansible_processor_vcpus, 5]|min if orchestration_engine == 'ANSIBLE' else '1'}}" openstack_service_workers: "{{ [ansible_processor_vcpus, 5]|min if orchestration_engine == 'ANSIBLE' else '1'}}"
openstack_service_rpc_workers: "{{ [ansible_processor_vcpus, 3]|min if orchestration_engine == 'ANSIBLE' else '1'}}"
# Optionally allow Kolla to set sysctl values # Optionally allow Kolla to set sysctl values
set_sysctl: "yes" set_sysctl: "yes"
......
...@@ -16,6 +16,8 @@ endpoint_type = internalURL ...@@ -16,6 +16,8 @@ endpoint_type = internalURL
api_workers = {{ openstack_service_workers }} api_workers = {{ openstack_service_workers }}
metadata_workers = {{ openstack_service_workers }} metadata_workers = {{ openstack_service_workers }}
rpc_workers = {{ openstack_service_rpc_workers }}
rpc_state_report_workers = {{ openstack_service_rpc_workers }}
# NOTE(SamYaple): We must specify this value here rather than the metadata conf # NOTE(SamYaple): We must specify this value here rather than the metadata conf
# because it is used by the l3 and dhcp agents. The reason the path has 'kolla' # because it is used by the l3 and dhcp agents. The reason the path has 'kolla'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment