bf6e06e666
Users can configure the number of worker threads however when it's not specified the calculated number of workers can get too large on hosts with a large number of CPUs. Change-Id: I10a653dda7444b756fede74ce434b9038415c74c
32 lines
997 B
Django/Jinja
32 lines
997 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
# General
|
|
[DEFAULT]
|
|
debug = {{ debug }}
|
|
|
|
# Neutron credentials for API access
|
|
auth_plugin = {{ neutron_keystone_auth_plugin }}
|
|
auth_url = {{ keystone_service_adminurl }}
|
|
auth_uri = {{ keystone_service_internaluri }}
|
|
auth_region = {{ keystone_service_region }}
|
|
project_domain_id = {{ neutron_service_project_domain_id }}
|
|
user_domain_id = {{ neutron_service_user_domain_id }}
|
|
project_name = {{ neutron_service_project_name }}
|
|
username = {{ neutron_service_user_name }}
|
|
password = {{ neutron_service_password }}
|
|
endpoint_type = adminURL
|
|
|
|
# Nova metadata service IP and port
|
|
nova_metadata_ip = {{ internal_lb_vip_address }}
|
|
nova_metadata_port = {{ nova_metadata_port }}
|
|
|
|
# Metadata proxy shared secret
|
|
metadata_proxy_shared_secret = {{ nova_metadata_proxy_secret }}
|
|
|
|
# Workers and backlog requests
|
|
metadata_workers = {{ neutron_metadata_workers | default(neutron_api_threads) }}
|
|
metadata_backlog = {{ neutron_metadata_backlog }}
|
|
|
|
# Caching
|
|
cache_url = memory://?default_ttl=5
|