6.0 KiB
description | layout | page_title | sidebar_current |
---|---|---|---|
The puppet-server Packer provisioner provisions Packer machines with Puppet by connecting to a Puppet master. | docs | Puppet Server - Provisioners | docs-provisioners-puppet-server |
Puppet Server Provisioner
Type: puppet-server
The puppet-server
Packer provisioner provisions Packer machines with Puppet by
connecting to a Puppet master.
-> Note: Puppet will not be installed automatically by this provisioner. This provisioner expects that Puppet is already installed on the machine. It is common practice to use the shell provisioner before the Puppet provisioner to do this.
Basic Example
The example below is fully functional and expects a Puppet server to be accessible from your network.
{
"type": "puppet-server",
"options": "--test --pluginsync",
"facter": {
"server_role": "webserver"
}
}
Configuration Reference
The reference of available configuration options is listed below.
The provisioner takes various options. None are strictly required. They are listed below:
-
client_cert_path
(string) - Path to the directory on your disk that contains the client certificate for the node. This defaults to nothing, in which case a client cert won't be uploaded. -
client_private_key_path
(string) - Path to the directory on your disk that contains the client private key for the node. This defaults to nothing, in which case a client private key won't be uploaded. -
execute_command
(string) - The command used to execute Puppet. This has various configuration template variables available. See below for more information. -
extra_arguments
(array of strings) - Additional options to pass to the puppet command. This allows for customization of theexecute_command
without having to completely replace or subsume its contents, making forward-compatible customizations much easier to maintain.This string is lazy-evaluated so one can incorporate logic driven by other parameters.
[
{{if ne "{{user environment}}" ""}}--environment={{user environment}}{{end}}
{{if ne ".ModulePath" ""}}--modulepath='{{.ModulePath}}:$({{.PuppetBinDir}}/puppet config print {{if ne "{{user `environment`}}" ""}}--environment={{user `environment`}}{{end}} modulepath)'{{end}}
]
-
facter
(object of key/value strings) - Additional Facter facts to make available to the Puppet run. -
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". -
ignore_exit_codes
(boolean) - If true, Packer will never consider the provisioner a failure. -
options
(string) - Additional command line options to pass topuppet agent
when Puppet is run. -
prevent_sudo
(boolean) - By default, the configured commands that are executed to run Puppet are executed withsudo
. 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 runningpuppet agent
. 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. -
puppet_node
(string) - The name of the node. If this isn't set, the fully qualified domain name will be used. -
puppet_server
(string) - Hostname of the Puppet server. By default "puppet" will be used. -
staging_dir
(string) - This is the directory where all the configuration of Puppet by Packer will be placed. By default this is /tmp/packer-puppet-server. 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.
Execute Command
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 agent --onetime --no-daemonize --detailed-exitcodes
{{if .Debug}}--debug {{end}}
{{if ne .PuppetServer ""}}--server='{{.PuppetServer}}' {{end}}
{{if ne .PuppetNode ""}}--certname='{{.PuppetNode}}' {{end}}
{{if ne .ClientCertPath ""}}--certdir='{{.ClientCertPath}}' {{end}}
{{if ne .ClientPrivateKeyPath ""}}--privatekeydir='{{.ClientPrivateKeyPath}}' {{end}}
{{if ne .ExtraArguments ""}}{{.ExtraArguments}} {{end}}
The following command is used if guest OS type is windows:
cd {{.WorkingDir}} &&
{{if ne .FacterVars ""}}{{.FacterVars}} && {{end}}
{{if ne .PuppetBinDir ""}}{{.PuppetBinDir}}/{{end}}
puppet agent --onetime --no-daemonize --detailed-exitcodes
{{if .Debug}}--debug {{end}}
{{if ne .PuppetServer ""}}--server='{{.PuppetServer}}' {{end}}
{{if ne .PuppetNode ""}}--certname='{{.PuppetNode}}' {{end}}
{{if ne .ClientCertPath ""}}--certdir='{{.ClientCertPath}}' {{end}}
{{if ne .ClientPrivateKeyPath ""}}--privatekeydir='{{.ClientPrivateKeyPath}}' {{end}}
{{if ne .ExtraArguments ""}}{{.ExtraArguments}} {{end}}
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.