Add support for Dell EMC VNX backend
This change adds a new define for manila::backend::dellemc_vnx, allowing users to create multiple backend definitions within their puppet manifests for use with Manila. Change-Id: I388ed5f9182fe1c595ef992b1aea0f466724916f Closes-Bug: #1706104
This commit is contained in:
parent
38e5a1914f
commit
86e7913294
99
manifests/backend/dellemc_vnx.pp
Normal file
99
manifests/backend/dellemc_vnx.pp
Normal file
@ -0,0 +1,99 @@
|
||||
# == define: manila::backend::dellemc_vnx
|
||||
#
|
||||
# Configures Manila to use the Dell EMC Isilon share driver
|
||||
# Compatible for multiple backends
|
||||
#
|
||||
# === Parameters
|
||||
#
|
||||
# [*driver_handles_share_servers*]
|
||||
# (required) Denotes whether the driver should handle the responsibility of
|
||||
# managing share servers. This must be set to false if the driver is to
|
||||
# operate without managing share servers.
|
||||
# VMAX driver requires this option to be as True.
|
||||
#
|
||||
# [*emc_nas_login*]
|
||||
# (required) User account name used to access the storage
|
||||
# system.
|
||||
#
|
||||
# [*emc_nas_password*]
|
||||
# (required) Password for the user account specified in the
|
||||
# emc_nas_login parameter.
|
||||
#
|
||||
# [*emc_nas_server*]
|
||||
# (required) The hostname (or IP address) for the storage system.
|
||||
#
|
||||
# [*emc_share_backend*]
|
||||
# (required) Share backend.
|
||||
#
|
||||
# [*share_backend_name*]
|
||||
# (optional) Name of the backend in manila.conf that
|
||||
# these settings will reside in
|
||||
#
|
||||
# [*vnx_server_container*]
|
||||
# (optional) Name of the Data Mover to serve the share service.
|
||||
# Defaults to None
|
||||
#
|
||||
# [*vnx_share_data_pools*]
|
||||
# (optional) Comma separated list specifying the name of the pools to be
|
||||
# used by this back end. Do not set this option if all storage pools on the
|
||||
# system can be used. Wild card character is supported
|
||||
# Defaults to None
|
||||
#
|
||||
# [*vnx_ethernet_ports*]
|
||||
# (optional) Comma-separated list specifying the ports (devices) of Data Mover
|
||||
# that can be used for share server interface. Do not set this option if all
|
||||
# ports on the Data Mover can be used. Wild card character is supported.
|
||||
# Defaults to None
|
||||
#
|
||||
# [*package_ensure*]
|
||||
# (optional) Ensure state for package. Defaults to 'present'.
|
||||
#
|
||||
# === Examples
|
||||
#
|
||||
# manila::backend::dellemc_vnx { 'myBackend':
|
||||
# driver_handles_share_servers => true,
|
||||
# emc_nas_login => 'admin',
|
||||
# emc_nas_password => 'password',
|
||||
# emc_nas_server => <IP address of Unity Syste,>,
|
||||
# emc_share_backend => 'vnx',
|
||||
# }
|
||||
#
|
||||
define manila::backend::dellemc_vnx (
|
||||
$driver_handles_share_servers,
|
||||
$emc_nas_login,
|
||||
$emc_nas_password,
|
||||
$emc_nas_server,
|
||||
$emc_share_backend,
|
||||
$share_backend_name = $name,
|
||||
$vnx_server_container = undef,
|
||||
$vnx_share_data_pools = undef ,
|
||||
$vnx_ethernet_ports = undef,
|
||||
$package_ensure = 'present',
|
||||
) {
|
||||
|
||||
include ::manila::deps
|
||||
|
||||
validate_string($emc_nas_password)
|
||||
|
||||
$vnx_share_driver = 'manila.share.drivers.emc.driver.EMCShareDriver'
|
||||
|
||||
manila_config {
|
||||
"${share_backend_name}/share_driver": value => $vnx_share_driver;
|
||||
"${share_backend_name}/driver_handles_share_servers": value => $driver_handles_share_servers;
|
||||
"${share_backend_name}/emc_nas_login": value => $emc_nas_login;
|
||||
"${share_backend_name}/emc_nas_password": value => $emc_nas_password, secret => true;
|
||||
"${share_backend_name}/emc_nas_server": value => $emc_nas_server;
|
||||
"${share_backend_name}/share_backend_name": value => $share_backend_name;
|
||||
"${share_backend_name}/emc_share_backend": value => $emc_share_backend;
|
||||
"${share_backend_name}/vnx_server_container": value => $vnx_server_container;
|
||||
"${share_backend_name}/vnx_share_data_pools": value => $vnx_share_data_pools;
|
||||
"${share_backend_name}/vnx_ethernet_ports": value => $vnx_ethernet_ports;
|
||||
}
|
||||
|
||||
ensure_resource('package','nfs-utils',{
|
||||
ensure => $package_ensure,
|
||||
tag => 'manila-support-package',
|
||||
})
|
||||
|
||||
}
|
||||
|
3
releasenotes/notes/vnx_driver_67236f6670a011e7.yaml
Normal file
3
releasenotes/notes/vnx_driver_67236f6670a011e7.yaml
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
features:
|
||||
- Add support for Dell EMC VNF Driver
|
69
spec/defines/manila_backend_dellemc_vnx_spec.rb
Normal file
69
spec/defines/manila_backend_dellemc_vnx_spec.rb
Normal file
@ -0,0 +1,69 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe 'manila::backend::dellemc_vnx' do
|
||||
|
||||
let(:title) {'dellemc_vnx'}
|
||||
|
||||
let :params do
|
||||
{
|
||||
:driver_handles_share_servers => true,
|
||||
:emc_nas_login => 'admin',
|
||||
:emc_nas_password => 'password',
|
||||
:emc_nas_server => '127.0.0.2',
|
||||
:emc_share_backend => 'vnx',
|
||||
:vnx_server_container => 'container1',
|
||||
:vnx_share_data_pools => '*',
|
||||
:vnx_ethernet_ports => 'eth1',
|
||||
}
|
||||
end
|
||||
|
||||
let :default_params do
|
||||
{
|
||||
:vnx_server_container => '<SERVICE DEFAULT>',
|
||||
:vnx_share_data_pools => '<SERVICE DEFAULT>',
|
||||
:vnx_ethernet_ports => '<SERVICE DEFAULT>',
|
||||
}
|
||||
end
|
||||
|
||||
shared_examples_for 'dell emc vnx share driver' do
|
||||
let :params_hash do
|
||||
default_params.merge(params)
|
||||
end
|
||||
|
||||
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')
|
||||
params_hash.each_pair do |config,value|
|
||||
is_expected.to contain_manila_config("dellemc_vnx/#{config}").with_value( value )
|
||||
end
|
||||
end
|
||||
|
||||
it 'marks emc_nas_password as secret' do
|
||||
is_expected.to contain_manila_config("dellemc_vnx/emc_nas_password").with_secret( true )
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
context 'with default parameters' do
|
||||
before do
|
||||
params = {}
|
||||
end
|
||||
|
||||
it_configures 'dell emc vnx share driver'
|
||||
end
|
||||
|
||||
context 'with provided parameters' do
|
||||
it_configures 'dell emc vnx share driver'
|
||||
end
|
||||
|
||||
context 'with share server config' do
|
||||
before do
|
||||
params.merge!({
|
||||
:emc_nas_password => true,
|
||||
})
|
||||
end
|
||||
|
||||
it { is_expected.to raise_error(Puppet::Error, /true is not a string. It looks to be a TrueClass/) }
|
||||
end
|
||||
|
||||
end
|
Loading…
Reference in New Issue
Block a user