Enable ovs_use_veth when gateway_ip_qos is used

In case QoS is enabled for the gateway, we need to enable ovs_use_veth
to ensure that rate limiting will work inside of the namespace.

Change-Id: I1cbbcde27e4a9edac40ff0fe4086894c7b601087
This commit is contained in:
Dmitriy Rabotyagov 2024-11-26 18:28:14 +01:00
parent b6846dbbd2
commit 5c58b66f54

View File

@ -9,6 +9,10 @@ interface_driver = {{ neutron_plugins[neutron_plugin_type].driver_interface }}
agent_mode = {{ neutron_plugins[neutron_plugin_type].l3_agent_mode }} agent_mode = {{ neutron_plugins[neutron_plugin_type].l3_agent_mode }}
{% if 'gateway_ip_qos' in neutron_l3_agent_extensions %}
ovs_use_veth = True
{% endif %}
# Conventional failover # Conventional failover
allow_automatic_l3agent_failover = True allow_automatic_l3agent_failover = True