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