Forge Home

exercise

TSE/PSE Exercise

5,517 downloads

5,491 latest version

2.6 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 (deleted)
released Sep 5th 2016
This version is compatible with:
  • , ,

Start using this module

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

Add this module to your Puppetfile:

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

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install isomodvarac-exercise --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

isomodvarac/exercise — version 0.1.1 Sep 5th 2016

exercise

Table of Contents

  1. Description
  2. Setup - The basics of getting started with exercise
  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.

Description

This module is a solution for TSE/PSE Exercise

Setup

Requirements

  • jfryman-nginx module
  • jfryman-selinux module
  • puppetlabs-vcsrepo
  • Requires SELinux to be disabled on Red Hat Enterprise because the port 8000 has already been defined for soundd_port_t

Beginning with exercise

  • A simple usage using only one required parameter: if $::operatingsystem == 'RedHat' { class { '::selinux': mode => 'disabled', } }
    class{"nginx": } class { 'exercise': url => 'ec2-52-65-181-92.ap-southeast-2.compute.amazonaws.com' }

Usage

  • Using more available options: if $::operatingsystem == 'RedHat' { class { '::selinux': mode => 'disabled', } }
    class{"nginx": } class { 'exercise': wwwroot => '/var/www/html', url => 'ec2-52-63-123-244.ap-southeast-2.compute.amazonaws.com', repository => 'https://github.com/puppetlabs/exercise-webpage', port => 8000, }

Reference

exercise: Handles configuring nginx vhost and pulling files from the remote repository

Limitations

Supports the following operating systems: Amazon Linux 2016.03, RHEL 7, Ubuntu 14.04

Hiera Support

  1. Make sure that %{clientcert} datasource is added to your hiera.yaml
  2. Create a yaml file named as your ${certname}.yaml. For example ip-10-0-0-109.ap-southeast-2.compute.internal.yaml
  3. Define the values for the keys exercise::wwwroot, exercise::url, exercise::repository and exercise::port in your ${certname}.yaml

For example: exercise::wwwroot: '/var/www/html' exercise::url: 'ec2-52-63-123-244.ap-southeast-2.compute.amazonaws.com' exercise::repository: 'https://github.com/puppetlabs/exercise-webpage' exercise::port: 8000