4734142ab3
Reduce neutron configuration as follows: 1) Limit [ml2*] sections to neutron server containers [1]. 2) Remove the [vlan] section everywhere because it only pertains to the defunct Linux bridge monolithic plug-in [2]. 3) Explicitly disable VXLAN if deployment only includes flat or VLAN networks [3]. 4) Limit Linux bridge agent configuration options to neutron agent containers. 5) Remove [agent] tunnel_type option because the Linux bridge agent does not use it. 6) Move some options to correct locations. 7) Reorder some options to improve readability. 8) Annotate groups of options or specific options. [1] https://review.openstack.org/#/c/196759/ [2] https://review.openstack.org/#/c/196765/ [3] https://review.openstack.org/#/c/160826/ Change-Id: I275fb600360530534f7673e6eb2a3d397b10fb8e Closes-Bug: #1473230
36 lines
1.1 KiB
Django/Jinja
36 lines
1.1 KiB
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
{% set _api_threads = ansible_processor_vcpus|default(2) // 2 %}
|
|
{% set api_threads = _api_threads if _api_threads > 0 else 1 %}
|
|
|
|
# General
|
|
[DEFAULT]
|
|
verbose = {{ verbose }}
|
|
debug = {{ debug }}
|
|
|
|
# Neutron credentials for API access
|
|
auth_plugin = {{ neutron_keystone_auth_plugin }}
|
|
auth_url = {{ keystone_service_adminuri }}
|
|
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(api_threads) }}
|
|
metadata_backlog = {{ neutron_metadata_backlog }}
|
|
|
|
# Caching
|
|
cache_url = memory://?default_ttl=5
|