packer-cn/website/source/docs/provisioners/puppet-masterless.html.md

179 lines
7.5 KiB
Markdown
Raw Normal View History

---
2017-06-14 21:04:16 -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. Puppet is run in masterless mode, meaning it never
communicates to a Puppet master.
2015-07-22 22:31:00 -04:00
layout: docs
2017-06-14 21:04:16 -04:00
page_title: 'Puppet Masterless - Provisioners'
sidebar_current: 'docs-provisioners-puppet-masterless'
---
# Puppet (Masterless) Provisioner
Type: `puppet-masterless`
2015-07-22 22:31:00 -04:00
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.
2017-06-14 21:04:16 -04:00
-> **Note:** Puppet will *not* be installed automatically by this
2015-07-22 22:31:00 -04:00
provisioner. This provisioner expects that Puppet is already installed on the
machine. It is common practice to use the [shell
provisioner](/docs/provisioners/shell.html) before the Puppet provisioner to do
this.
## Basic Example
2015-07-22 22:31:00 -04:00
The example below is fully functional and expects the configured manifest file
to exist relative to your working directory.
2017-06-14 21:04:16 -04:00
``` json
{
"type": "puppet-masterless",
"manifest_file": "site.pp"
}
```
## Configuration Reference
The reference of available configuration options is listed below.
Required parameters:
2017-06-14 21:04:16 -04:00
- `manifest_file` (string) - This is either a path to a puppet manifest
2015-07-22 23:25:58 -04:00
(`.pp` file) *or* a directory containing multiple manifests that puppet will
apply (the ["main
manifest"](https://docs.puppetlabs.com/puppet/latest/reference/dirs_manifest.html)).
These file(s) must exist on your local system and will be uploaded to the
remote machine.
Optional parameters:
2017-06-14 21:04:16 -04:00
- `execute_command` (string) - The command used to execute Puppet. This has
2015-07-22 23:25:58 -04:00
various [configuration template
2017-03-28 18:28:34 -04:00
variables](/docs/templates/engine.html) available. See
2015-07-22 23:25:58 -04:00
below for more information.
2017-06-14 21:04:16 -04:00
- `extra_arguments` (array of strings) - This is an array of additional options to
pass to the puppet command when executing puppet. This allows for
customization of the `execute_command` without having to completely replace
or include it's contents, making forward-compatible customizations much
easier.
2017-06-14 21:04:16 -04:00
- `facter` (object of key/value strings) - Additional
2016-01-14 15:31:19 -05:00
[facts](https://puppetlabs.com/facter) to make
2015-07-22 23:25:58 -04:00
available when Puppet is running.
- `guest_os_type` (string) - The target guest OS type, either "unix" or
"windows". Setting this to "windows" will cause the provisioner to use
Windows friendly paths and commands. By default, this is "unix".
2017-06-14 21:04:16 -04:00
- `hiera_config_path` (string) - The path to a local file with hiera
2015-07-22 23:25:58 -04:00
configuration to be uploaded to the remote machine. Hiera data directories
must be uploaded using the file provisioner separately.
2017-06-14 21:04:16 -04:00
- `ignore_exit_codes` (boolean) - If true, Packer will never consider the
2016-03-13 23:39:29 -04:00
provisioner a failure.
2017-06-14 21:04:16 -04:00
- `manifest_dir` (string) - The path to a local directory with manifests to be
2015-07-22 23:25:58 -04:00
uploaded to the remote machine. This is useful if your main 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.
2017-06-14 21:04:16 -04:00
~> `manifest_dir` is passed to `puppet apply` as the `--manifestdir` option.
2015-07-22 23:25:58 -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.
2017-06-14 21:04:16 -04:00
- `module_paths` (array of strings) - This is an array of paths to module
2015-07-22 23:25:58 -04:00
directories on your local filesystem. These will be uploaded to the
remote machine. By default, this is empty.
2017-06-14 21:04:16 -04:00
- `prevent_sudo` (boolean) - By default, the configured commands that are
2015-07-22 23:25:58 -04:00
executed to run Puppet are executed with `sudo`. If this is true, then the
sudo will be omitted.
- `puppet_bin_dir` (string) - The path to the directory that contains the puppet
binary for running `puppet apply`. Usually, this would be found via the `$PATH`
or `%PATH%` environment variable, but some builders (notably, the Docker one) do
not run profile-setup scripts, therefore the path is usually empty.
- `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"
when guest OS type is unix and "C:/Windows/Temp/packer-puppet-masterless" when windows.
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-07-22 23:25:58 -04:00
2017-06-14 21:04:16 -04:00
- `working_directory` (string) - This is the directory from which the puppet
2015-07-22 23:25:58 -04:00
command will be run. When using hiera with a relative path, this option
allows to ensure that the paths are working properly. If not specified,
defaults to the value of specified `staging_directory` (or its default value
if not specified either).
## Execute Command
2015-07-22 22:31:00 -04:00
By default, Packer uses the following command (broken across multiple lines for
readability) to execute Puppet:
```
cd {{.WorkingDir}} &&
{{if ne .FacterVars ""}}{{.FacterVars}} {{end}}
{{if .Sudo}}sudo -E {{end}}
{{if ne .PuppetBinDir ""}}{{.PuppetBinDir}}/{{end}}
puppet apply --verbose --modulepath='{{.ModulePath}}'
{{if ne .HieraConfigPath ""}}--hiera_config='{{.HieraConfigPath}}' {{end}}
{{if ne .ManifestDir ""}}--manifestdir='{{.ManifestDir}}' {{end}}
--detailed-exitcodes
{{if ne .ExtraArguments ""}}{{.ExtraArguments}} {{end}}
{{.ManifestFile}}
```
The following command is used if guest OS type is windows:
```
cd {{.WorkingDir}} &&
{{.FacterVars}} &&
{{if ne .PuppetBinDir ""}}{{.PuppetBinDir}}/{{end}}
puppet apply --verbose --modulepath='{{.ModulePath}}'
{{if ne .HieraConfigPath ""}}--hiera_config='{{.HieraConfigPath}}' {{end}}
{{if ne .ManifestDir ""}}--manifestdir='{{.ManifestDir}}' {{end}}
--detailed-exitcodes
{{if ne .ExtraArguments ""}}{{.ExtraArguments}} {{end}}
{{.ManifestFile}}
```
2015-07-22 22:31:00 -04:00
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:
2017-06-14 21:04:16 -04:00
- `WorkingDir` - The path from which Puppet will be executed.
- `FacterVars` - Shell-friendly string of environmental variables used to set
2015-07-22 23:25:58 -04:00
custom facts configured for this provisioner.
2017-06-14 21:04:16 -04:00
- `HieraConfigPath` - The path to a hiera configuration file.
- `ManifestFile` - The path on the remote machine to the manifest file for
2015-07-22 23:25:58 -04:00
Puppet to use.
2017-06-14 21:04:16 -04:00
- `ModulePath` - The paths to the module directories.
- `Sudo` - A boolean of whether to `sudo` the command or not, depending on the
2015-07-22 23:25:58 -04:00
value of the `prevent_sudo` configuration.
## Default Facts
In addition to being able to specify custom Facter facts using the `facter`
configuration, the provisioner automatically defines certain commonly useful
facts:
2017-06-14 21:04:16 -04:00
- `packer_build_name` is set to the name of the build that Packer is running.
2015-07-22 23:25:58 -04:00
This is most useful when Packer is making multiple builds and you want to
distinguish them in your Hiera hierarchy.
2017-06-14 21:04:16 -04:00
- `packer_builder_type` is the type of the builder that was used to create the
2015-07-22 23:25:58 -04:00
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.