Remove nova::api::install_cinder_client

... because it was deprecated during Wallaby cycle[1].

[1] 5ca156ee8d

Change-Id: Ib95f1a396aef092c04edbe6beabb81c7b2408bb4
This commit is contained in:
Takashi Kajinami
2022-04-24 01:06:27 +09:00
parent a8d00ff718
commit 7fd0021867
2 changed files with 4 additions and 9 deletions

View File

@@ -164,10 +164,6 @@
# metadata handling from api class.
# Defaults to false
#
# [*install_cinder_client*]
# (optional) Whether the cinder::client class should be used to install the cinder client.
# Defaults to undef
#
# [*ratelimits*]
# (optional) A string that is a semicolon-separated list of 5-tuples.
# See http://docs.openstack.org/trunk/config-reference/content/configuring-compute-API.html
@@ -226,7 +222,6 @@ class nova::api(
$list_records_by_skipping_down_cells = $::os_service_default,
# DEPRECATED PARAMETER
$nova_metadata_wsgi_enabled = false,
$install_cinder_client = undef,
$ratelimits = undef,
$ratelimits_factory = undef,
$validate = undef,
@@ -244,10 +239,6 @@ class nova::api(
warning('Running nova metadata api via evenlet is deprecated and will be removed in Stein release.')
}
if $install_cinder_client != undef {
warning('The nova::api::install_cinder_client parameter is deprecated and has no effect')
}
if $ratelimits != undef {
warning('The nova::api::ratelimits parameter has been deprecated and has no effect')
}

View File

@@ -0,0 +1,4 @@
---
upgrade:
- |
The ``nova::api::install_cinder_client`` parameter has been removed.