Forge Home

dopuppetmaster

Self-contained, self-puppetting puppetmaster installation and configuration module

10,217 downloads

9,903 latest version

1.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.9.1 (latest)
  • 0.9.0
released May 5th 2014

Start using this module

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

Add this module to your Puppetfile:

mod 'devopera-dopuppetmaster', '0.9.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

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

Manually install this module globally with Puppet module tool:

puppet module install devopera-dopuppetmaster --version 0.9.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

devopera/dopuppetmaster — version 0.9.1 May 5th 2014

devopera-dopuppetmaster

The Puppetmaster is the central tenet of a puppet infrastructure. This Devopera puppet module configures a puppetmaster that is itself puppetable, uses stored configs in PuppetDB and optionally links to Nagios for monitoring.

Changelog

2014-04-30

  • Migrated over to using environment directories

2014-04-04

  • Raise java heap memory limit for Puppet DB

2014-01-15

  • Replaced nested $puppet_repo with $puppet_repo_X vars to handle defaults properly

2013-08-27

  • Moved across to docommon::fireport alias for opening firewall ports

Usage

Setup a basic puppetmaster, replace local /etc/puppet directory with Devopera repo as starting point

class { 'dopuppetmaster' :
  user => $user,
  # setup puppetmaster with devopera-puppet open read-only repo
  puppet_repo_source => 'https://github.com/devopera/puppet.git',
  environments => {
    'production' => {
       comment => 'production is the default environment',
       manifest => '$confdir/manifests/devopera.site.pp',
    },
    'devopera' => {
       comment => 'for all devopera VMs and builds',
       manifest => '$confdir/manifests/devopera.site.pp',
    },
  },
  # set this machine up as its own puppetmaster, i.e. not use original
  master_use_original => false,
  require => Class['dorepos'],
}

Copyright and License

Copyright (C) 2012 Lightenna Ltd

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.