Configure qos extension in openvswitch_agent.ini

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
This commit is contained in:
Travis Truman 2016-07-27 15:41:04 -04:00
parent da1a5e4661
commit b86d292bcc

View File

@ -12,6 +12,9 @@ bridge_mappings = {{ neutron_provider_networks.network_mappings }}
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]