Merge "Revert "Deprecate 'ovs_use_veth' and 'veth_mtu' options""

This commit is contained in:
Jenkins 2016-04-19 12:36:18 +00:00 committed by Gerrit Code Review
commit 8f33cbeb42
3 changed files with 1 additions and 10 deletions

View File

@ -38,7 +38,6 @@ OPTS = [
help=_('Name of Open vSwitch bridge to use')),
cfg.BoolOpt('ovs_use_veth',
default=False,
deprecated_for_removal=True,
help=_('Uses veth for an OVS interface or not. '
'Support kernels with limited namespace support '
'(e.g. RHEL 6.5) so long as ovs_use_veth is set to '

View File

@ -62,7 +62,6 @@ ovs_opts = [
"integration bridge as it won't be managed by the "
"agent anymore. Deprecated for ofagent.")),
cfg.BoolOpt('use_veth_interconnection', default=False,
deprecated_for_removal=True,
help=_("Use veths instead of patch ports to interconnect the "
"integration bridge to physical networks. "
"Support kernel without Open vSwitch patch port "
@ -111,7 +110,7 @@ agent_opts = [
"(gre and/or vxlan).")),
cfg.PortOpt('vxlan_udp_port', default=p_const.VXLAN_UDP_PORT,
help=_("The UDP port to use for VXLAN tunnels.")),
cfg.IntOpt('veth_mtu', default=9000, deprecated_for_removal=True,
cfg.IntOpt('veth_mtu', default=9000,
help=_("MTU size of veth interfaces")),
cfg.BoolOpt('l2_population', default=False,
help=_("Use ML2 l2population mechanism driver to learn "

View File

@ -1,7 +0,0 @@
---
prelude: >
The 'ovs_use_veth', 'use_veth_interconnection', and 'veth_mtu'
options have been deprecated and will be removed in Ocata.
deprecations:
- The 'ovs_use_veth', 'use_veth_interconnection', and 'veth_mtu'
options have been deprecated and will be removed in Ocata.