Forge Home

exercise

TSE/PSE Exercise

5,596 downloads

5,566 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.

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

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