Kitchen-puppet is very flexible in how it installs puppet:
It installs it in the following order:
-
if require_puppet_omnibus is set to true
Installs using the omnibus_puppet script and passes the puppet_version if specied as -v option.
-
If require_puppet_collections is set to true (the default)
Installs from the puppet collection. This is required if you wish to install puppet version 4 or 5.
You get the version of puppet in the collection. To influence which puppet version is install modify either
- puppet_yum_collections_repo
- puppet_apt_collections_repo to an new collection. At time of writing there are only 2 collections PC1 and puppet5.
-
if require_puppet_repo is set to true
Installs from the operation system repository with the puppet version that is in the particular repository.
key | default value | Notes |
---|---|---|
chef_bootstrap_url | https://www.chef.io/ chef/install.sh | the chef (needed for busser to run tests) NOTE: kitchen 1.4 only requires ruby to run busser so this is not required. |
custom_facts | Hash.new | Hash to set the puppet facts before running puppet apply |
custom_options | custom options to add to puppet apply command. | |
custom_pre_install_command | nil | Custom shell command to be used at beginning of install stage. Can be multiline. |
custom_install_command | nil | Custom shell command to be used at end of install stage. Can be multiline. See examples below. |
custom_pre_apply_command | nil | Custom shell command to be used before the puppet apply stage. Can be multiline. See examples below. |
custom_post_apply_command | nil | Custom shell command to be used after the puppet apply stage. Can be multiline. See examples below. |
facter_file | nil | custom facter_file to be provided to the puppet-apply command |
facter_version | "latest" | desired version, affects apt installs. |
files_path | directory to place at /tmp/kitchen/files | |
fileserver_config_path | file to place fileserver.conf | |
hiera_config_path | hiera.global.yaml then hiera.yaml | path to hiera.yaml |
hiera_data_path | puppet repo hiera data directory | |
hiera_data_remote_path | "/var/lib/hiera" | Hiera data directory on server |
hiera_deep_merge | false | install the deep_merge gem to support hiera deep merge mode |
hiera_eyaml | false | use hiera-eyaml to encrypt hiera data |
hiera_eyaml_gpg | false | use GPG encryption backend for hiera-eyaml |
hiera_eyaml_gpg_recipients | false | recipients eg ehiera/hiera-eyaml-gpg.recipients |
hiera_eyaml_gpg_secring | false | eg hiera/secring.gpg |
hiera_eyaml_gpg_pubring | false | eg hiera/pubring.gpg |
hiera_eyaml_key_remote_path | "/etc/puppet/secure/keys" | directory of hiera-eyaml keys on server |
hiera_eyaml_key_path | "hiera_keys" | directory of hiera-eyaml keys on workstation |
hiera_package | 'hiera-puppet' | Only used if install_hiera is set |
hiera_version | "latest" | desired version, affects apt installs. |
hiera_writer_files | Adds hiera YAML file generation | |
http_proxy | nil | use http proxy when installing puppet, packages and running puppet |
https_proxy | nil | use https proxy when installing puppet, packages and running puppet |
ignored_paths_from_root | ['spec'] | allow extra paths to be ignored when copying from puppet repository |
ignore_spec_fixtures | false | don't copy spec/fixtures to avoid problems with symlinks |
install_custom_facts | false | Install custom facts to yaml file at "/tmp/kitchen/facter/kitchen.rb" |
install_hiera | false | Installs hiera-puppet package. Not needed for puppet > 3.x.x |
librarian_puppet_ssl_file | nil | ssl certificate file for librarian-puppet |
r10k_ssl_file | nil | ssl certificate file for r10k |
manifest | puppet parses every .pp file in the manifests_path directory and its subdirectories | manifest(s) for puppet apply to run. If set to a file like 'site.pp' it will use the file in the mainfests_path. |
manifests_path | 'mainfests' | puppet repo manifests directory |
max_retries | 1 | maximum number of retry attempts of converge command |
modules_path | puppet repo manifests directory. Can be multiple directories separated by colons and then they will be merged | |
no_proxy | nil | list of URLs or IPs that should be excluded from proxying |
platform | platform_name kitchen.yml parameter | OS platform of server |
puppet_apply_command | nil | Overwrite the puppet apply command. Needs "sudo -E puppet apply" as a prefix. |
puppet_apt_repo | http://apt.puppetlabs.com/ puppetlabs-release-precise.deb | apt repo Ubuntu12 see https://apt.puppetlabs.com for others |
for Ubuntu14 change to | http://apt.puppetlabs.com/ puppetlabs-release-trusty.deb | |
for Ubuntu15 change to | http://apt.puppetlabs.com/ puppetlabs-release-jessie.deb | |
for Ubuntu16.04 change to | http://apt.puppetlabs.com/ puppetlabs-release-xenial.deb | |
puppet_apt_collections_repo | http://apt.puppetlabs.com/ puppet5-release-wheezy.deb | apt collections repo |
for Ubuntu14 change to | http://apt.puppetlabs.com/ puppet5-release-trusty.deb | |
for Ubuntu15 change to | http://apt.puppetlabs.com/ puppet5-release-jessie.deb | |
for Ubuntu16.04 change to | http://apt.puppetlabs.com/ puppet5-release-xenial.deb | |
puppet_binary | 'puppet' | puppet default binary |
puppet_coll_remote_path | "/opt/puppetlabs" | Server Installation location of a puppet collections install. |
puppet_config_path | path of custom puppet.conf file | |
puppet_debug | false | Enable full debugging logging on puppet run |
puppet_detailed_exitcodes | nil | Provide transaction information via exit codes. See --detailed-exitcodes section of puppet help apply |
puppet_enc | path for external node classifier script | |
puppet_environment | nil | puppet environment for running puppet apply (Must set if using Puppet v4) |
puppet_environment _config_path | "environment.conf" | Puppet environment config file |
puppet_environment _hiera_config_path | "hiera.yaml" | Environment layer hiera config file (see Puppet 4.10), only used if puppet _environmentpath = true |
puppet_environment _remote_hieradata_path | "hieradata" | Path in puppet_environmentpath_remote_path to contains the hiera data. |
puppet_environment _remote_modules_path | "modules" | Path in puppet_environmentpath_remote_path to contains the modules. |
puppet_environment _remote_manifests_path | "manifests" | Path in puppet_environmentpath_remote_path to contains the manifests. |
puppet _environmentpath_remote_path | /etc/puppet/environments (v3), /etc/puppetlabs/code/environments (v4) | The remote path for environments if puppet_environment is true |
puppet_future_parser | false | Run puppet with the future parser enabled (see https://docs.puppet.com/ puppet/3.8/experiments_future.html). |
puppet_git_init | nil | initialize puppet from GIT repository, e.g. "git@github.com:example/puppet-repo.git" |
puppet_git_pr | nil | checkout specific Pull Request from repository specified in puppet_git_init, e.g. "324" |
puppet_logdest | nil | Array of log destinations. Include 'console' if wanted |
puppet_omnibus_url | https://raw.githubusercontent.com/ petems/puppet-install-shell/ master/install_puppet_6_agent.sh | omnibus puppet v5 install location. |
for puppet v3 change to | https://raw.githubusercontent.com/ petems/puppet-install-shell/ master/install_puppet.sh | |
for puppet v4 change to | https://raw.githubusercontent.com/ petems/puppet-install-shell/ master/install_puppet_agent.sh | |
for puppet v5 change to | https://raw.githubusercontent.com/ petems/puppet-install-shell/ master/install_puppet_5_agent.sh | |
puppet_noop | false | puppet runs in a no-op or dry-run mode |
puppet_no_sudo | false | allow puppet command to run without sudo if required |
puppet_verbose | false | Extra information logging on puppet run |
puppet_show_diff | false | Show diffs for changes to config files during puppet runs. |
puppet_version | "latest" | desired version, affects apt and most installs. |
puppet_whitelist_exit_code | nil | Whitelist exit code expected from puppet run. Intended to be used together with puppet_detailed_exitcodes . You can also specify a yaml list here (you should use 0 and 2 for puppet_detailed_exitcodes to capture puppet runtime errors and allow multiple converge runs (without changes)). |
puppet_windows_msi_url | nil | The MSI to use to install Puppet on Windows, optional but may be needed when you want the latest version of a particular major Puppet release. |
puppet_yum_repo | https://yum.puppetlabs.com/ puppetlabs-release-el-6.noarch.rpm | yum repo RH/Centos6 |
for RH/Centos7 change to | https://yum.puppetlabs.com/ puppetlabs-release-el-7.noarch.rpm | |
puppet_yum_collections_repo | https://yum.puppetlabs.com/ puppet5/puppet-release-el-6.noarch.rpm | yum collections repo RH/Centos6 |
for RH/Centos7 change to | https://yum.puppetlabs.com/ puppet5/puppet-release-el-7.noarch.rpm | |
puppetfile_path | Path to Puppetfile | |
remove_puppet_repo | false | remove copy of puppet repository and puppet configuration on server after running puppet |
require_chef_for_busser | true | Install chef as currently needed by busser to run tests |
require_puppet_collections | true | Set if using puppet collections install (Puppet v4) |
require_puppet_omnibus | false | Set if using omnibus puppet install |
require_puppet_repo | true | Set if using a puppet install from yum or apt repo |
resolve_with_librarian_puppet | true | Use librarian_puppet to resolve modules if a Puppetfile is found |
resolve_with_r10k | true | Use r10k to resolve modules if a Puppetfile is found |
retry_on_exit_code | [] | Array of exit codes to retry converge command against |
update_package_repos | true | update OS repository metadata |
wait_for_retry | 30 | number of seconds to wait before retrying converge command |
The provisioner can be configured globally or per suite, global settings act as defaults for all suites, you can then customise per suite, for example:
---
driver:
name: vagrant
provisioner:
name: puppet_apply
manifests_path: /repository/puppet_repo/manifests
modules_path: /repository/puppet_repo/modules-mycompany
hiera_data_path: /repository/puppet_repo/hieradata
platforms:
- name: nocm_ubuntu-12.04
driver_plugin: vagrant
driver_config:
box: nocm_ubuntu-12.04
box_url: http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box
suites:
- name: default
NOTE: With Test-Kitchen 1.4 you not longer need chef install to run the tests. You just need ruby installed version 1.9 or higher and also add to the .kitchen.yml file
verifier:
ruby_bindir: '/usr/bin'
where /usr/bin is the location of the ruby command.
in this example, vagrant will download a box for ubuntu 1204 with no configuration management installed, then install the latest puppet and puppet apply against a puppet repo from the /repository/puppet_repo directory using the defailt manifest site.pp
To override a setting at the suite-level, specify the setting name under the suite:
suites:
- name: default
provisioner:
manifest: foobar.pp
- One liner
custom_install_command: yum install -y git
- Multiple lines, a.k.a embed shell script
custom_install_command: |
command1
command2
- Multiple lines join without new line
custom_install_command: >
command1 &&
command2
It can be beneficial to keep different Puppet layouts for different suites. Rather than having to specify the manifest, modules, etc for each suite, you can create the following directory structure and they will automatically be found:
$kitchen_root/$suite_name/puppet/manifests
$kitchen_root/$suite_name/puppet/modules
$kitchen_root/$suite_name/puppet/hiera
$kitchen_root/$suite_name/puppet/hiera.yaml
$kitchen_root/$suite_name/puppet/Puppetfile
When specifying a puppet version, you must use this format: "3.6.2-1puppetlabs1". I have no idea why Puppet versioned their repository with a trailing "-1puppetlabs1", but there it is.
See https://puppet.com/blog/encrypt-your-data-using-hiera-eyaml
See https://blog.benroberts.net/2014/12/setting-up-hiera-eyaml-gpg for using GPG backend allowing secrets to be protected using asymmetric keys.
key | default value | Notes |
---|---|---|
puppet_version | "latest" | desired version, affects apt installs. |
facter_version | "latest" | desired version, affects apt installs. |
platform | platform_name kitchen.yml parameter | OS platform of server |
require_puppet_repo | true | Set if using a puppet install from yum or apt repo |
puppet_apt_repo | http://apt.puppetlabs.com/ puppetlabs-release-precise.deb | apt repo |
puppet_yum_repo | https://yum.puppetlabs.com/ puppetlabs-release-el-6.noarch.rpm | yum repo |
require_puppet_omnibus | false | Set if using omnibus puppet install |
puppet_omnibus_url | omnibus puppet install location. | |
puppet_omnibus_remote_path | "/opt/puppet" | Server Installation location of an omnibus puppet install. |
puppet_detailed_exitcodes | nil | Provide transaction information via exit codes. |
puppet_logdest | nil | Where to send messages. Choose between syslog, the console, and a log file. |
puppet_masterport | nil | The port on which to contact the puppet master. |
puppet_environment | nil | The puppet environment to run the agent under |
puppet_test | false | Enable the most common options used for testing. |
puppet_onetime | true | Run the configuration once. |
puppet_no_daemonize | true | Do not send the process into the background. |
puppet_server | nil | will default to 'puppet'. Useful for interactively running when used with the --no-daemonize option. |
puppet_waitforcert | '0' | Time to wait for certificate if agent does not yet have certificates |
puppet_certname | nil | Set the certname (unique ID) of the client |
puppet_digest | nil | Change the certificate fingerprinting digest algorithm. The default is SHA256 |
puppet_debug | false | Enable full debugging logging on puppet run |
puppet_verbose | false | Extra information logging on puppet run |
puppet_noop | false | puppet runs in a no-op or dry-run mode |
update_package_repos | true | update OS repository metadata |
custom_facts | Hash.new | Hash to set the puppet facts before running puppet apply |
facterlib | nil | Path for dynamic fact generation, e.g. /etc/puppet/facter . See https://docs.puppetlabs.com/facter/2.2/custom_facts.html |
chef_bootstrap_url | "https://www.chef.io/chef/install.sh" | the chef (needed for busser to run tests) |
puppet_agent_command | nil | Overwrite the puppet agent command. Needs "sudo -E puppet agent" as a prefix. |
require_chef_for_busser | true | Install chef as currently needed by busser to run tests. NOTE: kitchen 1.4 only requires ruby to run busser so this is not required. |
puppet_config_path | path of custom puppet.conf file | |
http_proxy | nil | use http proxy when installing puppet and packages |
https_proxy | nil | use https proxy when installing puppet and packages |
no_proxy | nil | list of URLs or IPs that should be excluded from proxying |
ignore_spec_fixtures | ignore spec/fixtures directory |
NOTE: Puppet Collections Support not in puppet agent yet
The provisioner can be configured globally or per suite, global settings act as defaults for all suites, you can then customise per suite, for example:
---
driver:
name: vagrant
provisioner:
name: puppet_agent
puppet_debug: true
puppet_verbose: true
puppet_server: puppetmaster-nocm-ubuntu-1204
platforms:
- name: nocm_ubuntu-12.04
driver_plugin: vagrant
driver_config:
box: nocm_ubuntu-12.04
box_url: http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box
suites:
- name: default
NOTE: With Test-Kitchen 1.4 you not longer need chef install to run the tests. You just need ruby installed version 1.9 or higher and also add to the .kitchen.yml file
verifier:
ruby_bindir: '/usr/bin'
where /usr/bin is the location of the ruby command.
In this example, vagrant will download a box for ubuntu 1204 with no configuration management installed, then install the latest puppet and run puppet agent against a puppet master at puppetmaster-nocm-ubuntu-1204
NOTE: It is important that the server can resolve the hostname ip address of the puppetmaster, in this case puppetmaster-nocm-ubuntu-1204 and the puppetmaster must be able to resolve the hostname ip address address of the hostname of the node running puppet agent. This can be done by settings in the /etc/hosts files before running puppet.
NOTE: For testing it is possible to set the puppetmaster to autosign the certificate of a node by created a file /etc/puppet/autosign.conf that contains an *.
To override a setting at the suite-level, specify the setting name under the suite:
suites:
- name: default
provisioner:
manifest: foobar.pp
Instead of using the busser use a custom serverspec invocation using shell verifier to call it. With such setup there is no dependency on busser and any other chef library.
Also you can specify you tests in a different directory structure or even call beaker instead of server spec and have tests in beaker structure
Using a structure like
verifier:
name: shell
remote_exec: true
command: |
sudo -s <<SERVERSPEC
cd /opt/gdc/serverspec-core
export SERVERSPEC_ENV=$EC2DATA_ENVIRONMENT
export SERVERSPEC_BACKEND=exec
serverspec junit=true tag=~skip_in_kitchen check:role:$EC2DATA_TYPE
SERVERSPEC
where serverspec
is a wrapper around rake
invocation.
Use a Rakefile
similar to one in https://github.com/vincentbernat/serverspec-example.
With such approach we can achieve flexibility of running same test suite both in test kitchen and actual, even production, instances.
Beware: kitchen-shell-verifier is not yet merged into test-kitchen upstream so using separate gem is unavoidable so far
If you do not enable puppet_detailed_exitcodes, the provisioner only failes if the manifest can not be compiled. If the manifest contains errors (some manifests can not be executed) puppet will return exit 0 and thus the provisioner will be successfull, altought your catalog has not been fully applied. Probably this is not what you want.
When you enable puppet_detailed_exitcodes
, you can specify the error conditions to check for with puppet_whitelist_exit_code
also, otherwise the provisioner will fail altought everything is fine (and changes have been made).
Puppet will return with one of the following codes (see https://docs.puppet.com/puppet/latest/man/agent.html) when puppet_detailed_exitcodes
is true:
- 0: The run succeeded with no changes or failures; the system was already in the desired state.
- 1: The run failed, or wasn't attempted due to another run already in progress.
- 2: The run succeeded, and some resources were changed.
- 4: The run succeeded, and some resources failed.
- 6: The run succeeded, and included both changes and failures.
If you enable puppet_detailed_exitcodes
you should should probably set puppet_whitelist_exit_code
to 0 and 2
provisioner:
puppet_detailed_exitcodes: true
puppet_whitelist_exit_code:
- 0
- 2
key | default value | Notes |
---|---|---|
bolt_commands | nil | array of bolt commands to run. |
bolt_version | desired puppet bolt version, defaults to latest. | |
custom_pre_install_command | nil | Custom shell command to be used at beginning of install stage. Can be multiline. |
custom_install_command | nil | Custom shell command to be used at end of install stage. Can be multiline. See examples below. |
custom_pre_bolt_command | nil | Custom shell command to be used before the puppet bolt stage. Can be multiline. |
custom_post_bolt_command | nil | Custom shell command to be used after the puppet bolt stage. Can be multiline. |
http_proxy | nil | use http proxy when installing bolt, packages and running bolt |
https_proxy | nil | use https proxy when installing bolt, packages and running bolt |
no_proxy | nil | list of URLs or IPs that should be excluded from proxying |
platform | platform_name kitchen.yml parameter | OS platform of server |
require_bolt_omnibus | false | Set if using omnibus bolt install. (for future use) |
require_bolt_repo | true | Set if using a puppet bolt from yum or apt repo |
remove_bolt_repo | false | remove copy of bolt configuration on server after running bolt |
The Bolt provisioner can be configured globally or per suite, global settings act as defaults for all suites, you can then customise per suite, for example:
---
driver:
name: docker
use_sudo: false
privileged: true
provisioner:
name: puppet_bolt
bolt_commands:
- bolt --help
- bolt --version
platforms:
- name: ubuntu-16.04
driver_config:
image: ubuntu:16.04
platform: ubuntu
- name: centos-6.6
driver_config:
image: centos:6.6
platform: centos
- name: centos-7
driver_config:
image: centos:latest
platform: centos
run_command: /usr/sbin/init
- name: 'centos'
driver_plugin: docker
driver:
use_sudo: false
image: centos:7
run_command: /usr/sbin/init
suites:
- name: base