Deprecate max_fixed_ips_per_port

This option does not have a clear use case since we prevent
users from setting their own IP addresses on shared networks.

DocImpact
Change-Id: I211e87790c955ba5c3904ac27b177acb2847539d
Closes-Bug: #1502356
This commit is contained in:
Kevin Benton 2015-09-30 04:20:02 -07:00 committed by Kevin Benton
parent 82866276b0
commit 37277cf416
2 changed files with 2 additions and 0 deletions

View File

@ -149,6 +149,7 @@
# max_subnet_host_routes = 20
# Maximum number of fixed ips per port
# Deprecated: will be removed in N
# max_fixed_ips_per_port = 5
# Maximum number of routes per router

View File

@ -71,6 +71,7 @@ core_opts = [
cfg.IntOpt('max_subnet_host_routes', default=20,
help=_("Maximum number of host routes per subnet")),
cfg.IntOpt('max_fixed_ips_per_port', default=5,
deprecated_for_removal=True,
help=_("Maximum number of fixed ips per port")),
cfg.StrOpt('default_ipv4_subnet_pool', default=None,
help=_("Default IPv4 subnet-pool to be used for automatic "