2013-06-08 20:29:20 -04:00
|
|
|
---
|
2015-07-22 22:31:00 -04:00
|
|
|
description: |
|
|
|
|
Within the template, the provisioners section contains an array of all the
|
|
|
|
provisioners that Packer should use to install and configure software within
|
|
|
|
running machines prior to turning them into machine images.
|
|
|
|
layout: docs
|
|
|
|
page_title: 'Templates: Provisioners'
|
|
|
|
...
|
2013-06-08 20:29:20 -04:00
|
|
|
|
|
|
|
# Templates: Provisioners
|
|
|
|
|
|
|
|
Within the template, the provisioners section contains an array of all the
|
|
|
|
provisioners that Packer should use to install and configure software within
|
|
|
|
running machines prior to turning them into machine images.
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Provisioners are *optional*. If no provisioners are defined within a template,
|
|
|
|
then no software other than the defaults will be installed within the resulting
|
|
|
|
machine images. This is not typical, however, since much of the value of Packer
|
|
|
|
is to produce multiple identical images of pre-configured software.
|
2013-06-08 20:29:20 -04:00
|
|
|
|
|
|
|
This documentation page will cover how to configure a provisioner in a template.
|
2015-07-22 22:31:00 -04:00
|
|
|
The specific configuration options available for each provisioner, however, must
|
|
|
|
be referenced from the documentation for that specific provisioner.
|
2013-06-08 20:29:20 -04:00
|
|
|
|
|
|
|
Within a template, a section of provisioner definitions looks like this:
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
``` {.javascript}
|
2013-06-08 20:29:20 -04:00
|
|
|
{
|
|
|
|
"provisioners": [
|
2014-10-20 13:55:16 -04:00
|
|
|
// ... one or more provisioner definitions here
|
2013-06-08 20:29:20 -04:00
|
|
|
]
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-06-08 20:29:20 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
For each of the definitions, Packer will run the provisioner for each of the
|
|
|
|
configured builds. The provisioners will be run in the order they are defined
|
|
|
|
within the template.
|
2013-06-08 20:30:32 -04:00
|
|
|
|
2013-06-08 20:29:20 -04:00
|
|
|
## Provisioner Definition
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
A provisioner definition is a JSON object that must contain at least the `type`
|
|
|
|
key. This key specifies the name of the provisioner to use. Additional keys
|
|
|
|
within the object are used to configure the provisioner, with the exception of a
|
|
|
|
handful of special keys, covered later.
|
2013-06-08 20:29:20 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
As an example, the "shell" provisioner requires a key such as `script` which
|
|
|
|
specifies a path to a shell script to execute within the machines being created.
|
2013-06-08 20:29:20 -04:00
|
|
|
|
|
|
|
An example provisioner definition is shown below, configuring the shell
|
|
|
|
provisioner to run a local script within the machines:
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
``` {.javascript}
|
2013-06-08 20:29:20 -04:00
|
|
|
{
|
|
|
|
"type": "shell",
|
2013-06-28 15:11:24 -04:00
|
|
|
"script": "script.sh"
|
2013-06-08 20:29:20 -04:00
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-06-08 20:29:20 -04:00
|
|
|
|
2013-09-20 14:42:25 -04:00
|
|
|
## Run on Specific Builds
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
You can use the `only` or `except` configurations to run a provisioner only with
|
|
|
|
specific builds. These two configurations do what you expect: `only` will only
|
|
|
|
run the provisioner on the specified builds and `except` will run the
|
|
|
|
provisioner on anything other than the specified builds.
|
2013-09-20 14:42:25 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
An example of `only` being used is shown below, but the usage of `except` is
|
|
|
|
effectively the same:
|
2013-09-20 14:42:25 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
``` {.javascript}
|
2013-09-20 14:42:25 -04:00
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"script": "script.sh",
|
2014-05-06 14:08:42 -04:00
|
|
|
"only": ["virtualbox-iso"]
|
2013-09-20 14:42:25 -04:00
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-09-20 14:42:25 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The values within `only` or `except` are *build names*, not builder types. If
|
|
|
|
you recall, build names by default are just their builder type, but if you
|
|
|
|
specify a custom `name` parameter, then you should use that as the value instead
|
|
|
|
of the type.
|
2013-09-20 14:42:25 -04:00
|
|
|
|
2013-06-08 20:29:20 -04:00
|
|
|
## Build-Specific Overrides
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
While the goal of Packer is to produce identical machine images, it sometimes
|
|
|
|
requires periods of time where the machines are different before they eventually
|
|
|
|
converge to be identical. In these cases, different configurations for
|
|
|
|
provisioners may be necessary depending on the build. This can be done using
|
|
|
|
build-specific overrides.
|
2013-06-08 20:29:20 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
An example of where this might be necessary is when building both an EC2 AMI and
|
|
|
|
a VMware machine. The source EC2 AMI may setup a user with administrative
|
2013-06-08 20:29:20 -04:00
|
|
|
privileges by default, whereas the VMware machine doesn't have these privileges.
|
|
|
|
In this case, the shell script may need to be executed differently. Of course,
|
|
|
|
the goal is that hopefully the shell script converges these two images to be
|
|
|
|
identical. However, they may initially need to be run differently.
|
|
|
|
|
|
|
|
This example is shown below:
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
``` {.javascript}
|
2013-06-08 20:29:20 -04:00
|
|
|
{
|
|
|
|
"type": "shell",
|
2013-06-28 15:25:53 -04:00
|
|
|
"script": "script.sh",
|
2013-06-08 20:29:20 -04:00
|
|
|
|
|
|
|
"override": {
|
2014-05-06 14:08:42 -04:00
|
|
|
"vmware-iso": {
|
2013-06-08 20:29:20 -04:00
|
|
|
"execute_command": "echo 'password' | sudo -S bash {{.Path}}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-06-08 20:29:20 -04:00
|
|
|
|
|
|
|
As you can see, the `override` key is used. The value of this key is another
|
2015-07-22 22:31:00 -04:00
|
|
|
JSON object where the key is the name of a [builder
|
|
|
|
definition](/docs/templates/builders.html). The value of this is in turn another
|
|
|
|
JSON object. This JSON object simply contains the provisioner configuration as
|
|
|
|
normal. This configuration is merged into the default provisioner configuration.
|
2013-12-21 00:49:10 -05:00
|
|
|
|
|
|
|
## Pausing Before Running
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
With certain provisioners it is sometimes desirable to pause for some period of
|
|
|
|
time before running it. Specifically, in cases where a provisioner reboots the
|
|
|
|
machine, you may want to wait for some period of time before starting the next
|
|
|
|
provisioner.
|
2013-12-21 00:49:10 -05:00
|
|
|
|
|
|
|
Every provisioner definition in a Packer template can take a special
|
2015-07-22 22:31:00 -04:00
|
|
|
configuration `pause_before` that is the amount of time to pause before running
|
|
|
|
that provisioner. By default, there is no pause. An example is shown below:
|
2013-12-21 00:49:10 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
``` {.javascript}
|
2013-12-21 00:49:10 -05:00
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"script": "script.sh",
|
|
|
|
"pause_before": "10s"
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-12-21 00:49:10 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
For the above provisioner, Packer will wait 10 seconds before uploading and
|
|
|
|
executing the shell script.
|