Forge Home

delphix

Puppet Module for configuring target hosts for use by the Delphix platform

7,058 downloads

6,539 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

  • 0.1.1 (latest)
  • 0.1.0
released Apr 5th 2018
This version is compatible with:
  • Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.7.0 < 6.0.0
  • , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'delphix-delphix', '0.1.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install delphix-delphix --version 0.1.1

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

delphix/delphix — version 0.1.1 Apr 5th 2018

Delphix Target Host

Table of Contents

  1. Description
  2. Setup - The basics of getting started with delphix
  3. Usage - Configuration options and additional functionality
  4. Limitations - OS compatibility, etc.
  5. License

Description

This module will configure a Linux system for use as a target host in the Delphix platform. This includes installing all required packages, and creating a delphix user with sufficient sudo privileges support all platform operations, most notably managing NFS mounts. The resulting host can be used with a standard username, directories, and SSH key access.

Setup

The module provides a mechanism for configuring the delphix user with a single engine public SSH key in /home/delphix/.ssh/authorized_keys. In the event that you are building a cloud image and want to configure the SSH key at runtime, you can use cloud init (as described for AWS here) to append one or more SSH keys to the authorized_keys file on first boot. To get the public SSH key of an engine, use the system get sshPublicKey CLI command.

Beginning with Delphix

The Delphix module can configure the target host automatically with default settings. If you want to set up a target host quickly, apply the following manifest:

class { 'delphix': }

Usage

In the event that your target host needs to have a different user:group than delphix or different mount and toolkit directories, custom parameters can be passed when instantiating the delphix class.

class { 'delphix':
  target_user => 'delphix',
  target_group => 'delphix',
  target_mount => '/mnt/delphix',
  target_toolkit => '/home/delphix/toolkit',
  target_ssh_user => 'delphix',
  target_ssh_key => 'AAAAB3Nza[...]qXfdaQ=='
}

The delphix module configures a target host by default, but if you only want to configure a target host it can be called directly:

class { 'delphix::targethost':
  target_user => 'delphix',
  target_group => 'delphix',
  target_mount => '/mnt/delphix',
  target_toolkit => '/home/delphix/toolkit',
  target_ssh_user => 'delphix',
  target_ssh_key => 'AAAAB3Nza[...]qXfdaQ=='
}

Limitations

This module has been manually tested against latest Ubuntu and CentOS AMIs, but there is no reason it should not work with any RedHat or Debian variant.

License

Apache 2.0