diff -r 245bdc05448a -r 6e2e17e6aa45 components/ruby/puppet-modules/openstack-cinder/files/volume/zfs_fc.pp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/ruby/puppet-modules/openstack-cinder/files/volume/zfs_fc.pp Tue Feb 16 13:47:43 2016 -0800 @@ -0,0 +1,18 @@ +# == Class: cinder::volume::zfs_fc +# +# Sets up Cinder with the ZFS Fibre Channel driver +# +# === Parameters +# +# [*zfs_volume_base*] +# (optional) The ZFS path under which to create zvols for volumes. +# Defaults to 'rpool/cinder' +# +class cinder::volume::zfs_fc ( + $zfs_volume_base = 'rpool/cinder', +) { + + cinder::backend::zfs_fc { 'DEFAULT': + zfs_volume_base => $zfs_volume_base, + } +}