spuruites# GOV.UK Puppet
This repository contains the puppet modules and manifests for GOV.UK.
In order to run/test the Puppet manifests you will need Ruby 1.9.x and Bundler.
Dependencies are managed with Bundler and librarian-puppet, but hopefully this should be transparent unless you need to update the dependencies yourself.
If you're on a GOV.UK development VM, you should be able to run
$ govuk_puppet
which is a thin wrapper around the puppet-apply-dev
script.
Please familiarise yourself with our Puppet style guide before contributing to this repository.
Pay particular attention to the section 'Things that should not be in the Puppet Repo'.
All modules from librarian-puppet are cached in this repo under
vendor/puppet/
in order to ensure that third-party code doesn't change
underneath us, protect us from downtime, and improve build times.
If you're using this repo for the first time or the contents of
Gemfile[.lock]
or Puppetfile[.lock]
have recently changed then you'll
need to run:
$ bundle install
$ bundle exec rake librarian:install
Please avoid using librarian-puppet
directly because it's not very good at
respecting or maintaining its own config file.
Running these commands will often be the solution to Puppet errors about unknown classes or functions such as:
Unknown function validate_bool at …
Could not find class apt for …
Puppet::Parser::AST::Resource failed with error ArgumentError: Invalid resource type apt::source …
This should also fix errors while trying to run govuk_puppet
, of the form:
chown: changing ownership of '/home/vagrant/.puppet/[…]': Operation not permitted
If you need to add a new module to the Puppetfile
then you will need to
run the following to install it and update the cache:
$ bundle exec rake librarian:package
If you need to update an existing module to a newer version, you'll need to run the following:
$ bundle exec rake 'librarian:update[alphagov/tune_ext]'
Afterwards you should commit the Puppetfile
, Puppetfile.lock
and any new
files in vendor/puppet/
. If updating a module then you will need to
manually delete the old tarball from the cache directory.
NB: There should never be any changes to .librarian/puppet/config
.
Assuming that your dependencies are installed, run all the tests:
$ bundle exec rake
The module tests are located in modules/<module>/spec
. See the RSpec
Puppet documentation for more
details. The specs are run in parallel by default.
Puppet-lint is a tool that checks various syntax and style rules common to well written Puppet code. It can be run with:
$ bundle exec rake lint
This outputs a set of errors or warnings that should be fixed. See the Puppet Style Guide for more information.
You can run the tests for a specific module or modules by setting an
environment variable, mods
for the rake task, e.g.
$ bundle exec rake mods=nginx,varnish
The manifests/
directory is considered one module called manifests
for
this purpose.
$ bundle exec rake mods=manifests,govuk
Some issues that span multiple classes or modules may not be picked up unit
testing. Duplicate resources and mislabelled dependencies are such examples.
To catch these, all available govuk::node
classes can be exercised with:
$ bundle exec rake spec:nodes
Compiling node complete node catalogs takes quite a long time, so you may
wish to restrict it to certain classes of node by setting the environment
variable classes
for the rake task, e.g.
$ bundle exec rake spec:nodes classes=frontend,backend