2013-09-08 02:56:00 -04:00
---
layout: "docs"
page_title: "Puppet (Masterless) Provisioner"
2014-10-20 16:47:30 -04:00
description: |-
The masterless Puppet Packer provisioner configures Puppet to run on the machines by Packer from local modules and manifest files. Modules and manifests can be uploaded from your local machine to the remote machine or can simply use remote paths (perhaps obtained using something like the shell provisioner). Puppet is run in masterless mode, meaning it never communicates to a Puppet master.
2013-09-08 02:56:00 -04:00
---
# Puppet (Masterless) Provisioner
Type: `puppet-masterless`
2014-10-20 16:47:30 -04:00
The masterless Puppet Packer provisioner configures Puppet to run on the machines
2013-09-08 02:56:00 -04:00
by Packer from local modules and manifest files. Modules and manifests
can be uploaded from your local machine to the remote machine or can simply
use remote paths (perhaps obtained using something like the shell provisioner).
Puppet is run in masterless mode, meaning it never communicates to a Puppet
master.
2014-10-20 13:55:16 -04:00
-> **Note:** Puppet will _not_ be installed automatically
by this provisioner. This provisioner expects that Puppet is already
2013-09-08 02:56:00 -04:00
installed on the machine. It is common practice to use the
2014-12-23 19:37:41 -05:00
[shell provisioner ](/docs/provisioners/shell.html ) before the
2013-09-08 02:56:00 -04:00
Puppet provisioner to do this.
## Basic Example
The example below is fully functional and expects the configured manifest
file to exist relative to your working directory:
2014-10-20 13:55:16 -04:00
```javascript
2013-09-08 02:56:00 -04:00
{
"type": "puppet-masterless",
"manifest_file": "site.pp"
}
2014-10-20 13:55:16 -04:00
```
2013-09-08 02:56:00 -04:00
## Configuration Reference
The reference of available configuration options is listed below.
Required parameters:
2015-07-16 21:18:59 -04:00
* `manifest_file` (string) - This is either a path to a puppet manifest (`.pp`
2015-07-17 15:06:20 -04:00
file) _or_ a directory containing multiple manifests that puppet will apply
(the ["main manifest"][1]). These file(s) must exist on your local system and
will be uploaded to the remote machine.
[1]: https://docs.puppetlabs.com/puppet/latest/reference/dirs_manifest.html
2013-09-08 02:56:00 -04:00
Optional parameters:
* `execute_command` (string) - The command used to execute Puppet. This has
various [configuration template variables ](/docs/templates/configuration-templates.html )
available. See below for more information.
2015-06-18 15:12:28 -04:00
* `facter` (object of key/value strings) - Additional
2013-09-09 01:59:43 -04:00
[facts ](http://puppetlabs.com/puppet/related-projects/facter ) to make
available when Puppet is running.
2013-09-09 16:24:17 -04:00
* `hiera_config_path` (string) - The path to a local file with hiera
configuration to be uploaded to the remote machine. Hiera data directories
must be uploaded using the file provisioner separately.
2013-12-11 14:20:22 -05:00
* `manifest_dir` (string) - The path to a local directory with manifests
to be uploaded to the remote machine. This is useful if your main
2014-04-28 18:30:43 -04:00
manifest file uses imports. This directory doesn't necessarily contain
the `manifest_file` . It is a separate directory that will be set as
the "manifestdir" setting on Puppet.
2013-12-11 14:20:22 -05:00
2015-07-16 21:18:59 -04:00
~> `manifest_dir` is passed to `puppet apply` as the `--manifestdir` option.
2015-07-17 15:06:20 -04:00
This option was deprecated in puppet 3.6, and removed in puppet 4.0. If you
have multiple manifests you should use `manifest_file` instead.
2015-07-16 21:18:59 -04:00
2013-09-08 02:56:00 -04:00
* `module_paths` (array of strings) - This is an array of paths to module
directories on your local filesystem. These will be uploaded to the remote
machine. By default, this is empty.
* `prevent_sudo` (boolean) - By default, the configured commands that are
executed to run Puppet are executed with `sudo` . If this is true,
then the sudo will be omitted.
* `staging_directory` (string) - This is the directory where all the configuration
of Puppet by Packer will be placed. By default this is "/tmp/packer-puppet-masterless".
This directory doesn't need to exist but must have proper permissions so that
the SSH user that Packer uses is able to create directories and write into
this folder. If the permissions are not correct, use a shell provisioner
prior to this to configure it properly.
2015-01-10 18:25:48 -05:00
* `working_directory` (string) - This is the directory from which the puppet command
will be run. When using hiera with a relative path, this option allows to ensure
2015-02-28 07:02:49 -05:00
that the paths are working properly. If not specified, defaults to the value of
2015-01-10 18:25:48 -05:00
specified `staging_directory` (or its default value if not specified either).
2013-09-08 02:56:00 -04:00
## Execute Command
By default, Packer uses the following command (broken across multiple lines
for readability) to execute Puppet:
2014-10-20 13:55:16 -04:00
```liquid
2015-01-10 18:25:48 -05:00
cd {{.WorkingDir}} & & \
2013-09-20 06:36:37 -04:00
{{.FacterVars}}{{if .Sudo}} sudo -E {{end}}puppet apply \
2013-09-08 02:56:00 -04:00
--verbose \
--modulepath='{{.ModulePath}}' \
2013-12-31 16:06:08 -05:00
{{if ne .HieraConfigPath ""}}--hiera_config='{{.HieraConfigPath}}' {{end}} \
{{if ne .ManifestDir ""}}--manifestdir='{{.ManifestDir}}' {{end}} \
2014-01-04 13:55:56 -05:00
--detailed-exitcodes \
2013-09-08 02:56:00 -04:00
{{.ManifestFile}}
```
This command can be customized using the `execute_command` configuration.
As you can see from the default value above, the value of this configuration
can contain various template variables, defined below:
2015-01-10 18:25:48 -05:00
* `WorkingDir` - The path from which Puppet will be executed.
2013-09-09 01:59:43 -04:00
* `FacterVars` - Shell-friendly string of environmental variables used
to set custom facts configured for this provisioner.
2013-09-09 16:24:17 -04:00
* `HieraConfigPath` - The path to a hiera configuration file.
2013-09-08 02:56:00 -04:00
* `ManifestFile` - The path on the remote machine to the manifest file
for Puppet to use.
* `ModulePath` - The paths to the module directories.
* `Sudo` - A boolean of whether to `sudo` the command or not, depending on
the value of the `prevent_sudo` configuration.
2015-01-27 14:11:08 -05:00
## Default Facts
In addition to being able to specify custom Facter facts using the `facter`
configuration, the provisioner automatically defines certain commonly useful
facts:
* `packer_build_name` is set to the name of the build that Packer is running.
This is most useful when Packer is making multiple builds and you want to
distinguish them in your Hiera hierarchy.
* `packer_builder_type` is the type of the builder that was used to create the
machine that Puppet is running on. This is useful if you want to run only
certain parts of your Puppet code on systems built with certain builders.