Dell EMC Manila Driver- rebranding changes

Fixed the Dell EMC driver urls to the new path
due to rebranding and restructuring.

Change-Id: I1868e1de238f33519f789a37328f19d1d24a551a
This commit is contained in:
rajinir 2019-02-14 11:15:05 -06:00
parent fb8e36cd62
commit 7f030125b1
9 changed files with 13 additions and 8 deletions

View File

@ -71,7 +71,7 @@ define manila::backend::dellemc_isilon (
validate_string($emc_nas_password)
$dellemc_isilon_share_driver = 'manila.share.drivers.emc.driver.EMCShareDriver'
$dellemc_isilon_share_driver = 'manila.share.drivers.dell_emc.driver.EMCShareDriver'
manila_config {
"${share_backend_name}/share_driver": value => $dellemc_isilon_share_driver;

View File

@ -96,7 +96,7 @@ define manila::backend::dellemc_unity (
validate_string($emc_nas_password)
$unity_share_driver = 'manila.share.drivers.emc.driver.EMCShareDriver'
$unity_share_driver = 'manila.share.drivers.dell_emc.driver.EMCShareDriver'
manila_config {
"${share_backend_name}/share_driver": value => $unity_share_driver;

View File

@ -75,7 +75,7 @@ define manila::backend::dellemc_vmax (
validate_string($emc_nas_password)
$vmax_share_driver = 'manila.share.drivers.emc.driver.EMCShareDriver'
$vmax_share_driver = 'manila.share.drivers.dell_emc.driver.EMCShareDriver'
manila_config {
"${share_backend_name}/share_driver": value => $vmax_share_driver;

View File

@ -95,7 +95,7 @@ define manila::backend::dellemc_vnx (
validate_string($emc_nas_password)
$vnx_share_driver = 'manila.share.drivers.emc.driver.EMCShareDriver'
$vnx_share_driver = 'manila.share.drivers.dell_emc.driver.EMCShareDriver'
manila_config {
"${share_backend_name}/share_driver": value => $vnx_share_driver;

View File

@ -0,0 +1,5 @@
---
fixes:
- The Dell EMC Manila driver urls updated to the correct path
to fix the deprecation warnings.

View File

@ -29,7 +29,7 @@ describe 'manila::backend::dellemc_isilon' do
it 'configures dell emc isilon share driver' do
is_expected.to contain_manila_config("dellemc_isilon/share_driver").with_value(
'manila.share.drivers.emc.driver.EMCShareDriver')
'manila.share.drivers.dell_emc.driver.EMCShareDriver')
params_hash.each_pair do |config,value|
is_expected.to contain_manila_config("dellemc_isilon/#{config}").with_value( value )
end

View File

@ -38,7 +38,7 @@ describe 'manila::backend::dellemc_unity' do
it 'configures dell emc unity share driver' do
is_expected.to contain_manila_config("dellemc_unity/share_driver").with_value(
'manila.share.drivers.emc.driver.EMCShareDriver')
'manila.share.drivers.dell_emc.driver.EMCShareDriver')
params_hash.each_pair do |config,value|
is_expected.to contain_manila_config("dellemc_unity/#{config}").with_value( value )
end

View File

@ -32,7 +32,7 @@ describe 'manila::backend::dellemc_vmax' do
it 'configures dell emc vmax share driver' do
is_expected.to contain_manila_config("dellemc_vmax/share_driver").with_value(
'manila.share.drivers.emc.driver.EMCShareDriver')
'manila.share.drivers.dell_emc.driver.EMCShareDriver')
params_hash.each_pair do |config,value|
is_expected.to contain_manila_config("dellemc_vmax/#{config}").with_value( value )
end

View File

@ -38,7 +38,7 @@ describe 'manila::backend::dellemc_vnx' do
it 'configures dell emc vnx share driver' do
is_expected.to contain_manila_config("dellemc_vnx/share_driver").with_value(
'manila.share.drivers.emc.driver.EMCShareDriver')
'manila.share.drivers.dell_emc.driver.EMCShareDriver')
params_hash.each_pair do |config,value|
is_expected.to contain_manila_config("dellemc_vnx/#{config}").with_value( value )
end