From b86d292bcc6c62bf56a072e81c9d4ddb0e54ff5d Mon Sep 17 00:00:00 2001 From: Travis Truman Date: Wed, 27 Jul 2016 15:41:04 -0400 Subject: [PATCH] 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 --- templates/plugins/ml2/openvswitch_agent.ini.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/plugins/ml2/openvswitch_agent.ini.j2 b/templates/plugins/ml2/openvswitch_agent.ini.j2 index 02b4212e..d65a8557 100644 --- a/templates/plugins/ml2/openvswitch_agent.ini.j2 +++ b/templates/plugins/ml2/openvswitch_agent.ini.j2 @@ -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]