From 0dcebba6769e0d7cbf1a0eed0d699c4654492753 Mon Sep 17 00:00:00 2001 From: Brian Haley Date: Mon, 20 Nov 2023 13:34:27 -0500 Subject: [PATCH] Remove agent veth_mtu configuration option The ``[agent] veth_mtu`` has been deprecated since Wallaby and is not used anywhere. TrivialFix Change-Id: I170cb2348910179b1b264bad2effc6f5015a27fa --- neutron/conf/plugins/ml2/drivers/ovs_conf.py | 6 ------ .../notes/remove-agent-veth_mtu-9276f88cf8b43b8e.yaml | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 releasenotes/notes/remove-agent-veth_mtu-9276f88cf8b43b8e.yaml diff --git a/neutron/conf/plugins/ml2/drivers/ovs_conf.py b/neutron/conf/plugins/ml2/drivers/ovs_conf.py index e895e0098b5..8be5b330474 100644 --- a/neutron/conf/plugins/ml2/drivers/ovs_conf.py +++ b/neutron/conf/plugins/ml2/drivers/ovs_conf.py @@ -197,12 +197,6 @@ agent_opts = [ "(gre, vxlan and/or geneve).")), cfg.PortOpt('vxlan_udp_port', default=n_const.VXLAN_UDP_PORT, help=_("The UDP port to use for VXLAN tunnels.")), - cfg.IntOpt('veth_mtu', default=9000, - deprecated_for_removal=True, - deprecated_since="Yoga", - deprecated_reason="This parameter has had no effect since " - "the Wallaby release.", - help=_("MTU size of veth interfaces")), cfg.BoolOpt('l2_population', default=False, help=_("Use ML2 l2population mechanism driver to learn " "remote MAC and IPs and improve tunnel scalability.")), diff --git a/releasenotes/notes/remove-agent-veth_mtu-9276f88cf8b43b8e.yaml b/releasenotes/notes/remove-agent-veth_mtu-9276f88cf8b43b8e.yaml new file mode 100644 index 00000000000..ad60082fb3a --- /dev/null +++ b/releasenotes/notes/remove-agent-veth_mtu-9276f88cf8b43b8e.yaml @@ -0,0 +1,6 @@ +--- +upgrade: + - | + The ``[agent] veth_mtu`` parameter of ML2 OVS mechanism driver + configuration has been removed. This parameter has had no effect since + the Wallaby release.