Fix qos rules are not applied on ocata with ovs

If the Open vSwitch agent is being used, set extensions to qos
in the [agent] section of ml2_conf.ini.
see
https://docs.openstack.org/ocata/networking-guide/config-qos.html

Change-Id: I85272b03222775b14a311a110077a8eed736f56c
Closes-Bug: #1676319
This commit is contained in:
shaofeng_cheng 2017-04-01 14:33:54 +08:00
parent bed0357931
commit fbb0dedb10

View File

@ -54,6 +54,10 @@ arp_responder = true
enable_distributed_routing = True
{% endif %}
{% if enable_neutron_qos | bool %}
extensions = qos
{% endif %}
[ovs]
bridge_mappings = {% for bridge in neutron_bridge_name.split(',') %}physnet{{ loop.index0 + 1 }}:{{ bridge }}{% if not loop.last %},{% endif %}{% endfor %}
@ -65,7 +69,6 @@ integration_bridge = br-int-{{ item }}
[linux_bridge]
physical_interface_mappings = physnet1:{{ neutron_external_interface }}
[vxlan]
l2_population = true
{% endif %}