Remove network_api_class option
The network_api_class option was deprecated in Mitaka and is removed in Newton, so we can remove it. Change-Id: Id0a1741479176347574f03d821967309a516b4f9
This commit is contained in:
@@ -110,10 +110,6 @@
|
|||||||
# [*neutron_default_tenant_id*]
|
# [*neutron_default_tenant_id*]
|
||||||
# (optional) DEPRECATED. Default tenant id when creating neutron networks
|
# (optional) DEPRECATED. Default tenant id when creating neutron networks
|
||||||
#
|
#
|
||||||
# [*network_api_class*]
|
|
||||||
# (optional) DEPRECATED. The full class name of the network API class.
|
|
||||||
# This parameter has no effect
|
|
||||||
#
|
|
||||||
# [*neutron_auth_plugin*]
|
# [*neutron_auth_plugin*]
|
||||||
# Name of the plugin to load (string value)
|
# Name of the plugin to load (string value)
|
||||||
# Defaults to undef
|
# Defaults to undef
|
||||||
@@ -146,17 +142,12 @@ class nova::network::neutron (
|
|||||||
$neutron_admin_username = undef,
|
$neutron_admin_username = undef,
|
||||||
$neutron_admin_auth_url = undef,
|
$neutron_admin_auth_url = undef,
|
||||||
$neutron_default_tenant_id = undef,
|
$neutron_default_tenant_id = undef,
|
||||||
$network_api_class = undef,
|
|
||||||
$neutron_auth_plugin = undef,
|
$neutron_auth_plugin = undef,
|
||||||
$neutron_ca_certificates_file = undef,
|
$neutron_ca_certificates_file = undef,
|
||||||
) {
|
) {
|
||||||
|
|
||||||
include ::nova::deps
|
include ::nova::deps
|
||||||
|
|
||||||
if $network_api_class != undef {
|
|
||||||
warning('network_api_class has no effect and will be dropped in a future release.')
|
|
||||||
}
|
|
||||||
|
|
||||||
# neutron_admin params removed in Mitaka
|
# neutron_admin params removed in Mitaka
|
||||||
if $neutron_password {
|
if $neutron_password {
|
||||||
$neutron_password_real = $neutron_password
|
$neutron_password_real = $neutron_password
|
||||||
|
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
deprecations:
|
||||||
|
- The deprecated ``network_api_class`` config option has been
|
||||||
|
removed.
|
Reference in New Issue
Block a user