Forge Home

zfs_appliance

the custom types needed to manage an Oracle ZFS appliance

16,408 downloads

193 latest version

5.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.3.0 (latest)
  • 1.2.1
  • 1.2.0
  • 1.1.0
  • 1.0.2
  • 1.0.1
released May 19th 2023
This version is compatible with:
  • Puppet Enterprise 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >=4.0.0 < 9.0.0
  • , , , , , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'enterprisemodules-zfs_appliance', '1.3.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add enterprisemodules-zfs_appliance
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install enterprisemodules-zfs_appliance --version 1.3.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

enterprisemodules/zfs_appliance — version 1.3.0 May 19th 2023

Enterprise Modules

Table of Contents

  1. Overview
  2. License
  3. Description - What the module does and why it is useful
  4. Setup
  1. Reference - An under-the-hood peek at what the module is doing and how
  2. Limitations - OS compatibility, etc.

Overview

Enterprise Modules has a long history of providing puppet modules to products used in large enterprises. This module allows you to use puppet to manage Oracle ZFS appliances.

Enterprise Modules is committed to helping our customers enjoy all the benefits of Puppet and Puppet Enterprise for all components in the IT infrastructure of large enterprises. Also the non open-source components. This module is a strong addition to our set of modules and shows our first steps moving out of the domain of Oracle products.

License

This is a commercially licensed module. But you can use the module on VirtualBox based development systems for FREE. When used on real systems a license is required.

You can license our modules in multiple ways. Our basic licensing model requires a subscription per node. But contact us for details.

Check the License for details.

Description

The zfs_appliance module allows you to manage:

  • zfs_share
  • zfs_project

Here is an example on how to manage a ZFS project on a ZFS appliance.

zfs_appliance { 'default':
  password      => 'welcome1',
  verify_ssl    => false,
  appliance_url => 'https://192.168.59.10:215',
}

zfs_project { 'default:all/project_1':
  ensure              => 'present',
  aclinherit          => 'restricted',
  aclmode             => 'discard',
  checksum            => 'fletcher4',
  compression         => 'off',
  default_group       => 'other',
  default_permissions => '705',
  default_user        => 'nobody',
  mountpoint          => '/export/project_1',
  quota               => '0.0',
  recordsize          => '131072.0',
  reservation         => '0.0',
  sharenfs            => 'on',
  sharesmb            => 'on',
  snapdir             => 'hidden',
}

Check here to see the full documentation for this module.

Setup

Requirements

The zfs_appliance module requires:

  • Puppet module enterprisemodules-easy_type installed.
  • Puppet version 4.0 or higher. Can be Puppet Enterprise or Puppet Open Source
  • Access to an Oracle ZFS appliance
  • A valid entitlement for usage of this module by Enterprise Modules.
  • Runs on most Linux systems.
  • Windows systems are NOT supported

Installing the zfs_appliance module

To install these modules, you can use a Puppetfile

mod 'enterprisemodules/zfs_appliance'               ,'1.0.x'

Then use the librarian-puppet or r10K to install the software.

You can also install the software using the puppet module command:

puppet module install enterprisemodules-zfs_appliance

Reference

Here you can find some more information regarding this puppet module:

There are no related blog posts yet.Some example code:

Limitations

This module runs most Linux versions. It requires a puppet version higher than 4. The module does NOT run on windows systems. Contact us of you need to run this module on other flovors of UNIX. We can work together with you to make it work.