3.8 KiB
description | layout | page_title | sidebar_current |
---|---|---|---|
The salt-masterless Packer provisioner provisions machines built by Packer using Salt states, without connecting to a Salt master. | docs | Salt Masterless - Provisioners | docs-provisioners-salt-masterless |
Salt Masterless Provisioner
Type: salt-masterless
The salt-masterless
Packer provisioner provisions machines built by Packer
using Salt states, without connecting to a Salt master.
Basic Example
The example below is fully functional.
{
"type": "salt-masterless",
"local_state_tree": "/Users/me/salt"
}
Configuration Reference
The reference of available configuration options is listed below. The only required element is "local_state_tree".
Required:
local_state_tree
(string) - The path to your local state tree. This will be uploaded to theremote_state_tree
on the remote.
Optional:
-
bootstrap_args
(string) - Arguments to send to the bootstrap script. Usage is somewhat documented on github, but the script itself has more detailed usage instructions. By default, no arguments are sent to the script. -
disable_sudo
(boolean) - By default, the bootstrap install command is prefixed withsudo
. When using a Docker builder, you will likely want to passtrue
sincesudo
is often not pre-installed. -
remote_pillar_roots
(string) - The path to your remote pillar roots. default:/srv/pillar
. This option cannot be used withminion_config
. -
remote_state_tree
(string) - The path to your remote state tree. default:/srv/salt
. This option cannot be used withminion_config
. -
local_pillar_roots
(string) - The path to your local pillar roots. This will be uploaded to theremote_pillar_roots
on the remote. -
custom_state
(string) - A state to be run instead ofstate.highstate
. Defaults tostate.highstate
if unspecified. -
minion_config
(string) - The path to your local minion config file. This will be uploaded to the/etc/salt
on the remote. This option overrides theremote_state_tree
orremote_pillar_roots
options. -
grains_file
(string) - The path to your local grains file. This will be uploaded to/etc/salt/grains
on the remote. -
skip_bootstrap
(boolean) - By default the salt provisioner runs salt bootstrap to install salt. Set this to true to skip this step. -
temp_config_dir
(string) - Where your local state tree will be copied before moving to the/srv/salt
directory. Default is/tmp/salt
. -
no_exit_on_failure
(boolean) - Packer will exit if thesalt-call
command fails. Set this option to true to ignore Salt failures. -
log_level
(string) - Set the logging level for thesalt-call
run. -
salt_call_args
(string) - Additional arguments to pass directly tosalt-call
. See salt-call documentation for more information. By default no additional arguments (besides the ones Packer generates) are passed tosalt-call
. -
salt_bin_dir
(string) - Path to thesalt-call
executable. Useful if it is not on the PATH. -
guest_os_type
(string) - The target guest OS type, either "unix" or "windows".