
Code is duplicated between single volume backend (cinder::volume::*) and multi backends (cinder::backend::*). This commits updates the single volume backends to make use of the respective multiple backends classes. Change-Id: I26a796fb6131fa469f007af54cb96b3605c0f74d
14 lines
301 B
Puppet
14 lines
301 B
Puppet
#
|
|
class cinder::volume::iscsi (
|
|
$iscsi_ip_address,
|
|
$volume_group = 'cinder-volumes',
|
|
$iscsi_helper = 'tgtadm'
|
|
) {
|
|
|
|
cinder::backend::iscsi { 'DEFAULT':
|
|
iscsi_ip_address => $iscsi_ip_address,
|
|
volume_group => $volume_group,
|
|
iscsi_helper => $iscsi_helper
|
|
}
|
|
}
|