# dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
# Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
-# iproute2 package that supports namespaces).
+# iproute2 package that supports namespaces). This option is deprecated and
+# will be removed in a future release, at which point the old behavior of
+# use_namespaces = True will be enforced.
# use_namespaces = True
# The DHCP server can assist with providing metadata support on isolated
# interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
# Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
-# iproute2 package that supports namespaces).
+# iproute2 package that supports namespaces). This option is deprecated and
+# will be removed in a future release, at which point the old behavior of
+# use_namespaces = True will be enforced.
# use_namespaces = True
# If use_namespaces is set as False then the agent can only configure one router.
# interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
+# This option is deprecated and will be removed in a future release,
+# at which point the old behavior of use_namespaces = True will be enforced.
# use_namespaces = True
USE_NAMESPACES_OPTS = [
cfg.BoolOpt('use_namespaces', default=True,
- help=_("Allow overlapping IP.")),
+ help=_("Allow overlapping IP. This option is deprecated and "
+ "will be removed in a future release."),
+ deprecated_for_removal=True),
]
IPTABLES_OPTS = [