Forge Home

nimblestreamer

A puppet module to provision nimble streamer

6,114 downloads

5,594 latest version

2.3 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.3.0 (latest)
  • 0.2.0
  • 0.1.0
released Oct 24th 2017

Start using this module

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

Add this module to your Puppetfile:

mod 'yoshz-nimblestreamer', '0.3.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install yoshz-nimblestreamer --version 0.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

yoshz/nimblestreamer — version 0.3.0 Oct 24th 2017

nimblestreamer

Table of Contents

  1. Description
  2. Setup - The basics of getting started with nimblestreamer
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module

Description

This module installs Nimble Streamer on CentOS and sets up the configuration file.

Further configuration is done by using the WMS Panel.

Setup

Add the module to node configuration:

  node server {
    class { '::nimblestreamer':
      port => 80,
    }
  }

Usage

Basic configuration just makes sure that Nimble is installed and running.

If you want to register the server with the WMS Panel you have to run the following command manually on the server:

sudo /usr/bin/nimble_regutil -u test@yourcompany.com -p mypassword

The configuration file /etc/nimble/nimble.conf is now updated with a panel_uuid and a panel_password. Copy these values back to your node configuration:

  node server {
    class { '::nimblestreamer':
      panel_uuid => 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
      panel_password => 'hash',
    }
  }

Reference

All mandatory configuration are supported by this module as defined on this page: http://blog.wmspanel.com/p/nimble-streamer-configuration.html

Limitations

Only CentOS 7 is tested currently.

Development

You are free to fork this repository and support to additional OS or configuration options.