Remove ha_enabled parameter

... which was deprecated during the past cycle[1].

[1] f40c3138f6

Change-Id: I204cd4d3f8fe1c6a80c6c0ab6b91da75224648b1
This commit is contained in:
Takashi Kajinami
2025-06-24 14:14:52 +09:00
parent 646c5d35c0
commit 6139e9e7f3
2 changed files with 5 additions and 12 deletions

View File

@@ -133,12 +133,6 @@
# in the l3 config.
# Defaults to false.
#
# DEPRECATED PARAMETERS
#
# [*ha_enabled*]
# (optional) Enabled or not HA for L3 agent.
# Defaults to undef
#
class neutron::agents::l3 (
$package_ensure = 'present',
Boolean $enabled = true,
@@ -168,17 +162,11 @@ class neutron::agents::l3 (
$network_log_burst_limit = $facts['os_service_default'],
$network_log_local_output_log_base = $facts['os_service_default'],
Boolean $purge_config = false,
# DEPRECATED PARAMETERS
Optional[Boolean] $ha_enabled = undef,
) {
include neutron::deps
include neutron::params
if $ha_enabled != undef {
warning('The ha_enabled parameter has been deprecated and has no effect.')
}
resources { 'neutron_l3_agent_config':
purge => $purge_config,
}

View File

@@ -0,0 +1,5 @@
---
upgrade:
- |
The ``neutron::agents::l3::ha_enabled`` parameter has been removed.