b86d292bcc
When Open vSwitch ML2 is used along with the qos extension the agent configuration requires `extensions = qos` as specified here: http://docs.openstack.org/mitaka/networking-guide/adv-config-qos.html#configuration Change-Id: I097c044d98690db8ee1f968cfd133e838269de19
24 lines
724 B
Django/Jinja
24 lines
724 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
[ovs]
|
|
{% if neutron_tunnel_types | length > 0 %}
|
|
local_ip = {{ neutron_local_ip }}
|
|
{% endif %}
|
|
{% if neutron_provider_networks.network_mappings is defined %}
|
|
bridge_mappings = {{ neutron_provider_networks.network_mappings }}
|
|
{% endif %}
|
|
|
|
[agent]
|
|
l2_population = {{ neutron_plugins[neutron_plugin_type].l2_population }}
|
|
tunnel_types = {{ neutron_tunnel_types }}
|
|
enable_distributed_routing = {{ neutron_plugins[neutron_plugin_type].router_distributed | default('False') }}
|
|
{% if 'qos' in neutron_plugin_base %}
|
|
extensions = qos
|
|
{% endif %}
|
|
|
|
# Security groups
|
|
[securitygroup]
|
|
firewall_driver = {{ neutron_plugins[neutron_plugin_type].driver_firewall }}
|
|
enable_security_group = True
|
|
enable_ipset = True
|