Merge "Deprecate config option "keepalived_use_no_track""

This commit is contained in:
Zuul 2020-11-18 18:48:33 +00:00 committed by Gerrit Code Review
commit 9f2cd7b1e7
2 changed files with 10 additions and 0 deletions

View File

@ -108,6 +108,11 @@ OPTS = [
'restarting the L3 agent.')),
cfg.BoolOpt('keepalived_use_no_track',
default=True,
deprecated_for_removal=True,
deprecated_reason='By keepalived version detection introduced '
'by https://review.opendev.org/757620 there '
'is no need for this config option. To be '
'removed in X.',
help=_('If keepalived without support for "no_track" option '
'is used, this should be set to False. '
'Support for this option was introduced in keepalived '

View File

@ -0,0 +1,5 @@
---
deprecations:
- Deprecate ``keepalived_use_no_track`` config option, as keepalived
version check is a safe source to decide if ``no_track`` can be
used in keepalived configuration file.