Merge "hnas: Remove deprecated unused parameter"

This commit is contained in:
Zuul 2023-01-12 16:08:30 +00:00 committed by Gerrit Code Review
commit 168c364c14
2 changed files with 6 additions and 13 deletions

View File

@ -30,15 +30,9 @@
# managing share servers.
# Defaults to false.
#
# DEPRECATED PARAMETERS
#
# [*share_backend_name*]
# (optional) Name of the backend in manila.conf that
# these settings will reside in
#
# === Examples
#
# manila::backend::hds_hnas { 'HITACHI1':
# class { 'manila::share::hds_hnas':
# driver_handles_share_servers => false,
# hitachi_hnas_user => 'supervisor',
# hitachi_hnas_password => 'supervisor',
@ -56,14 +50,8 @@ class manila::share::hitachi_hnas (
$hitachi_hnas_evs_ip,
$hitachi_hnas_file_system_name,
$driver_handles_share_servers = false,
# DEPRECAED PARAMETERS
$share_backend_name = undef,
) {
if $share_backend_name != undef {
warning('The share_backend_name parameter is deprecated and has no effect.')
}
manila::backend::hitachi_hnas { 'DEFAULT':
driver_handles_share_servers => $driver_handles_share_servers,
hitachi_hnas_user => $hitachi_hnas_user,

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The ``manila::share::hitachi_hnas::share_backend_name`` parameter has been
removed.