6033N/A# == Class: cinder::volume::zfs_iscsi
6033N/A#
6033N/A# Sets up Cinder with the ZFS iSCSI driver
6033N/A#
6033N/A# === Parameters
6033N/A#
6033N/A# [*zfs_volume_base*]
6033N/A# (optional) The ZFS path under which to create zvols for volumes.
6033N/A# Defaults to 'rpool/cinder'
6033N/A#
6033N/Aclass cinder::volume::zfs_iscsi (
6033N/A $zfs_volume_base = 'rpool/cinder',
6033N/A) {
6033N/A
6033N/A cinder::backend::zfs_iscsi { 'DEFAULT':
6033N/A zfs_volume_base => $zfs_volume_base,
6033N/A }
6033N/A}