Add missing portset parameter to Svf driver

This patch adds missing configuration parameter 'storwize_portset'
to Cinder IBM Spectrum virtualize family (Svf) driver.

Depends-On: I0b28036bc04b5c0c59347f70273cf0f82848c829
Change-Id: I7734542f710d1aa726b9637847231bb84a368da9
This commit is contained in:
katarimanoj 2023-01-31 14:09:48 +05:30
parent 6372a182e4
commit 53567ff23d
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ class tripleo::profile::base::cinder::volume::ibm_svf (
'CinderSvfIscsiChapEnabled' => lookup('cinder::backend::ibm_svf::storwize_svc_iscsi_chap_enabled', undef, undef, undef),
'CinderSvfRetainAuxVolume' => lookup('cinder::backend::ibm_svf::storwize_svc_retain_aux_volume', undef, undef, undef),
'CinderSvfVolumePoolName' => lookup('cinder::backend::ibm_svf::storwize_svc_volpool_name', undef, undef, undef),
'CinderSvfPortset' => lookup('cinder::backend::ibm_svf::storwize_portset', undef, undef, undef),
}
any2array($backend_name).each |String $backend| {
@ -53,6 +54,7 @@ class tripleo::profile::base::cinder::volume::ibm_svf (
'storwize_svc_iscsi_chap_enabled' => $backend_config['CinderSvfIscsiChapEnabled'],
'storwize_svc_retain_aux_volume' => $backend_config['CinderSvfRetainAuxVolume'],
'storwize_svc_volpool_name' => $backend_config['CinderSvfVolumePoolName'],
'storwize_portset' => $backend_config['CinderSvfPortset'],
})})
}
}