Remove min-l3-agents-per-router

min-l3-agents-per-router was deprecated in neutron in newton and was
recently removed.

Change-Id: I922b24ac57f4e3fc152f1e10b6e82128a383e2e9
This commit is contained in:
Brent Eagles 2017-01-17 16:21:29 -03:30
parent 27f2987fa5
commit 01858c9d76
2 changed files with 3 additions and 9 deletions

View File

@ -217,10 +217,6 @@
# LBaaS agent should be installed from neutron::agents::lbaas.
# Defaults to false.
#
# [*min_l3_agents_per_router*]
# Deprecated. (optional) Minimum number of l3 agents which a HA router will be scheduled on.
# Defaults to undef
#
class neutron::server (
$package_ensure = 'present',
$enabled = true,
@ -263,7 +259,6 @@ class neutron::server (
$state_path = undef,
$lock_path = undef,
$ensure_lbaas_package = false,
$min_l3_agents_per_router = undef,
) inherits ::neutron::params {
include ::neutron::deps
@ -333,10 +328,6 @@ class neutron::server (
include ::neutron::db::sync
}
if $min_l3_agents_per_router {
warning('min_l3_agents_per_router is deprecated, has no effect and will be removed for the Ocata release.')
}
neutron_config {
'DEFAULT/l3_ha': value => $l3_ha;
'DEFAULT/max_l3_agents_per_router': value => $max_l3_agents_per_router;

View File

@ -0,0 +1,3 @@
---
deprecations:
- Removing min_l3_agents_per_router which was deprecated in newton.