diff --git a/octavia/common/config.py b/octavia/common/config.py index 5fde9bd416..9693d04cbf 100644 --- a/octavia/common/config.py +++ b/octavia/common/config.py @@ -317,13 +317,6 @@ health_manager_opts = [ default=10, mutable=True, help=_('Sleep time between sending heartbeats.')), - - # Used for updating health - cfg.StrOpt('health_update_driver', default='health_db', - help=_('Driver for updating amphora health system.'), - deprecated_for_removal=True, - deprecated_reason=_('This driver interface was removed.'), - deprecated_since='Victoria'), ] oslo_messaging_opts = [ @@ -507,9 +500,6 @@ controller_worker_opts = [ default='distributor_noop_driver', help=_('Name of the distributor driver to use')), cfg.ListOpt('statistics_drivers', default=['stats_db'], - deprecated_name='stats_update_driver', - deprecated_group='health_manager', - deprecated_since='Victoria', help=_('List of drivers for updating amphora statistics.')), cfg.StrOpt('loadbalancer_topology', default=constants.TOPOLOGY_SINGLE, diff --git a/releasenotes/notes/remove-health_update_driver-56c99ec977bca245.yaml b/releasenotes/notes/remove-health_update_driver-56c99ec977bca245.yaml new file mode 100644 index 0000000000..d14cc83fb1 --- /dev/null +++ b/releasenotes/notes/remove-health_update_driver-56c99ec977bca245.yaml @@ -0,0 +1,9 @@ +--- +upgrade: + - | + The deprecated ``[health_manager] health_update_driver`` option was + removed. + + - | + The deprecated ``[health_manager] stats_update_driver`` option has been + removed. Use the ``[controller_worker] statistics_drivers`` option instead.