Deprecate gateway_external_network_id option

This option is used only when external_network_bridge is set to
non-empty value, and that other option is already marked for removal.

DocImpact The gateway_external_network_id option is deprecated and will
          be removed in next releases.

Change-Id: Ie6ea9b8977a0e06d69d735532082e9e094c26534
Related-Bug: #1511578
This commit is contained in:
Ihar Hrachyshka 2017-02-23 10:21:12 +00:00
parent e674034aa1
commit 391ac43bf3
2 changed files with 7 additions and 1 deletions

View File

@ -60,7 +60,8 @@ OPTS = [
"This value should be set to the UUID of that external "
"network. To allow L3 agent support multiple external "
"networks, both the external_network_bridge and "
"gateway_external_network_id must be left empty.")),
"gateway_external_network_id must be left empty."),
deprecated_for_removal=True),
cfg.StrOpt('ipv6_gateway', default='',
help=_("With IPv6, the network used for the external gateway "
"does not need to have an associated subnet, since the "

View File

@ -0,0 +1,5 @@
---
deprecations:
- The ``gateway_external_network_id`` L3 agent option is deprecated and will
be removed in next releases, with ``external_network_bridge`` that it
depends on.