Skip to content

stephenrjohnson/puppetmodule

 
 

Repository files navigation

Build Status

Puppet module

This module provides classes for managing the puppet agent and puppet master. It will setup passenger and apache on the puppetmaster. Please note this will not setup puppetdb. This can be configured using the puppetdb module http://forge.puppetlabs.com/puppetlabs/puppetdb. Storedconfigs with puppetdb will only work on puppet versions newer than 2.7.12.

Prerequisites

If you are using a RedHat based OS you also need to have the EPEL repo configured as this module requires the passenger apache module.

Requires the following modules from puppetforge: stdlib, apache, concat, inifile

Usage Note

If you are using this module to install a puppetmaster and serving the manifest of the machine. You may have issues with it halting the puppet master if it is running through webrick. In which case run a single puppet run using

puppet apply -e "class{'puppet::repo::puppetlabs': } Class['puppet::repo::puppetlabs'] -> Package <| |> class { 'puppetdb': }  class { 'puppet::master': storeconfigs => true }"

Master

class { 'puppetdb': }
class { 'puppet::master':
    storeconfigs              => true,
}

Puppet Environments

Puppet 3.5 introduced a new way of handling Puppet environments known as Directory Environments. This is expected to become the default configuration as of Puppet 4.0, this module supports both methods.

Config Method (default)

class { 'puppet::master': }

puppet::masterenv {'dev':
    modulepath => '/etc/puppet/env/dev/modules',
    manifest   => '/etc/puppet/env/dev/site.pp',
}
puppet::masterenv {'production':
    modulepath => '/etc/puppet/env/production/modules',
    manifest   => '/etc/puppet/env/production/site.pp',
}

Directory method using environmentpath

class { 'puppet::master':
  environments => 'directory',
}

Optionally, an environmentpath parameter can be supplied to configure the base root of Puppet environments, this defaults to $confdir/environments

Agent

class { 'puppet::agent':
    puppet_server             => master.puppetlabs.vm,
    environment               => production,
    splay                     => true,
}

Deprecation Warning

The templatedir parameter will default to undef and will remove the setting from the puppet.conf file in version 2.0.0 of this module.

Testing

Install gems:

bundle install --path vendor/bundle

Lint and rspec-puppet:

bundle exec rake lint
bundle exec rake spec

If you have a working Vagrant setup you can run the rspec-system tests:

bundle exec rake beaker

To use different base boxes than the default pass the name of the box to the rake command with the BEAKER_set environment variable (check out .nodelist.yml for box names):

BEAKER_set=ubuntu-server-1404-x64 bundle exec rake beaker

About

A Puppet configuration manager for puppet agent, master, and puppetdb

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 52.8%
  • Puppet 43.0%
  • HTML 4.2%