Add a bit more to the docs
1 file changed
tree: 552efb15c2144b57d8ea9f56e6439f0efc5936af
  1. puppet/
  2. .gitignore
  3. .kitchen.cloud.yml
  4. .kitchen.yml
  5. Gemfile
  6. LICENSE
  7. README.md
README.md

puppet-kitchen

Test Kitchen + Puppet

Installation

gem install bundler
bundle install

Usage

Make sure to have some puppet modules in the puppet/modules/ directory. The current hiera setup assumes you have the apache module, and ASF's customfact module.

Then edit puppet/data/node/default-ubuntu14.vagrantup.com.yaml to start adding classes and setting class parameters.

When you're ready to test, just run:

kitchen converge default

This will bring up a vm, run puppet apply. From there, you can continue writing your puppet module (in puppet/modules/$module) and testing by running the above command.

Most the the test-kitchen work with puppet, however make sure to see the kitchen-puppet documentation (even though the explanation isn't nearly as it needs to be).

Most information has been taken from here