6033N/A# == Class: cinder::volume::zfs_fc
6033N/A#
6033N/A# Sets up Cinder with the ZFS Fibre Channel 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_fc (
6033N/A $zfs_volume_base = 'rpool/cinder',
6033N/A) {
6033N/A
6033N/A cinder::backend::zfs_fc { 'DEFAULT':
6033N/A zfs_volume_base => $zfs_volume_base,
6033N/A }
6033N/A}