2013-08-27 17:29:52 -04:00
|
|
|
---
|
2015-07-22 22:31:00 -04:00
|
|
|
description: |
|
|
|
|
The Chef solo Packer provisioner installs and configures software on machines
|
|
|
|
built by Packer using chef-solo. Cookbooks can be uploaded from your local
|
|
|
|
machine to the remote machine or remote paths can be used.
|
|
|
|
layout: docs
|
|
|
|
page_title: 'Chef-Solo Provisioner'
|
|
|
|
...
|
2013-08-27 17:29:52 -04:00
|
|
|
|
|
|
|
# Chef Solo Provisioner
|
|
|
|
|
|
|
|
Type: `chef-solo`
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The Chef solo Packer provisioner installs and configures software on machines
|
|
|
|
built by Packer using [chef-solo](https://docs.chef.io/chef_solo.html).
|
|
|
|
Cookbooks can be uploaded from your local machine to the remote machine or
|
|
|
|
remote paths can be used.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
|
|
|
The provisioner will even install Chef onto your machine if it isn't already
|
2015-06-07 09:12:05 -04:00
|
|
|
installed, using the official Chef installers provided by Chef Inc.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
|
|
|
## Basic Example
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The example below is fully functional and expects cookbooks in the "cookbooks"
|
|
|
|
directory relative to your working directory.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
``` {.javascript}
|
2013-08-27 17:29:52 -04:00
|
|
|
{
|
|
|
|
"type": "chef-solo",
|
|
|
|
"cookbook_paths": ["cookbooks"]
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-08-27 17:29:52 -04:00
|
|
|
|
|
|
|
## Configuration Reference
|
|
|
|
|
|
|
|
The reference of available configuration options is listed below. No
|
|
|
|
configuration is actually required, but at least `run_list` is recommended.
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `chef_environment` (string) - The name of the `chef_environment` sent to the
|
2015-06-10 23:33:00 -04:00
|
|
|
Chef server. By default this is empty and will not use an environment
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `config_template` (string) - Path to a template that will be used for the Chef
|
|
|
|
configuration file. By default Packer only sets configuration it needs to
|
|
|
|
match the settings set in the provisioner configuration. If you need to set
|
|
|
|
configurations that the Packer provisioner doesn't support, then you should
|
|
|
|
use a custom configuration template. See the dedicated "Chef Configuration"
|
|
|
|
section below for more details.
|
2013-09-16 02:28:41 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `cookbook_paths` (array of strings) - This is an array of paths to "cookbooks"
|
|
|
|
directories on your local filesystem. These will be uploaded to the remote
|
|
|
|
machine in the directory specified by the `staging_directory`. By default,
|
|
|
|
this is empty.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `data_bags_path` (string) - The path to the "data\_bags" directory on your
|
|
|
|
local filesystem. These will be uploaded to the remote machine in the
|
|
|
|
directory specified by the `staging_directory`. By default, this is empty.
|
2013-09-10 23:00:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `encrypted_data_bag_secret_path` (string) - The path to the file containing
|
|
|
|
the secret for encrypted data bags. By default, this is empty, so no secret
|
|
|
|
will be available.
|
2013-11-18 19:14:33 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `environments_path` (string) - The path to the "environments" directory on
|
|
|
|
your local filesystem. These will be uploaded to the remote machine in the
|
|
|
|
directory specified by the `staging_directory`. By default, this is empty.
|
2015-01-20 14:07:46 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `execute_command` (string) - The command used to execute Chef. This has
|
|
|
|
various [configuration template
|
|
|
|
variables](/docs/templates/configuration-templates.html) available. See below
|
|
|
|
for more information.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `install_command` (string) - The command used to install Chef. This has
|
|
|
|
various [configuration template
|
|
|
|
variables](/docs/templates/configuration-templates.html) available. See below
|
|
|
|
for more information.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `json` (object) - An arbitrary mapping of JSON that will be available as node
|
|
|
|
attributes while running Chef.
|
2013-11-18 19:14:33 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `prevent_sudo` (boolean) - By default, the configured commands that are
|
2013-08-27 17:29:52 -04:00
|
|
|
executed to install and run Chef are executed with `sudo`. If this is true,
|
|
|
|
then the sudo will be omitted.
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `remote_cookbook_paths` (array of strings) - A list of paths on the remote
|
2014-05-04 13:47:40 -04:00
|
|
|
machine where cookbooks will already exist. These may exist from a previous
|
|
|
|
provisioner or step. If specified, Chef will be configured to look for
|
|
|
|
cookbooks here. By default, this is empty.
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `roles_path` (string) - The path to the "roles" directory on your
|
|
|
|
local filesystem. These will be uploaded to the remote machine in the
|
|
|
|
directory specified by the `staging_directory`. By default, this is empty.
|
2013-11-18 19:14:33 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `run_list` (array of strings) - The [run
|
|
|
|
list](https://docs.chef.io/run_lists.html) for Chef. By default this is empty.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `skip_install` (boolean) - If true, Chef will not automatically be installed
|
2015-06-07 09:12:05 -04:00
|
|
|
on the machine using the Chef omnibus installers.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `staging_directory` (string) - This is the directory where all the
|
|
|
|
configuration of Chef by Packer will be placed. By default this
|
|
|
|
is "/tmp/packer-chef-solo". 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.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2013-09-16 02:28:41 -04:00
|
|
|
## Chef Configuration
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
By default, Packer uses a simple Chef configuration file in order to set the
|
|
|
|
options specified for the provisioner. But Chef is a complex tool that supports
|
|
|
|
many configuration options. Packer allows you to specify a custom configuration
|
|
|
|
template if you'd like to set custom configurations.
|
2013-09-16 02:28:41 -04:00
|
|
|
|
|
|
|
The default value for the configuration template is:
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
``` {.liquid}
|
2013-09-16 02:28:41 -04:00
|
|
|
cookbook_path [{{.CookbookPaths}}]
|
|
|
|
```
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
This template is a [configuration
|
|
|
|
template](/docs/templates/configuration-templates.html) and has a set of
|
|
|
|
variables available to use:
|
2013-09-16 02:28:41 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `ChefEnvironment` - The current enabled environment. Only non-empty if the
|
|
|
|
environment path is set.
|
|
|
|
- `CookbookPaths` is the set of cookbook paths ready to embedded directly into a
|
|
|
|
Ruby array to configure Chef.
|
|
|
|
- `DataBagsPath` is the path to the data bags folder.
|
|
|
|
- `EncryptedDataBagSecretPath` - The path to the encrypted data bag secret
|
|
|
|
- `EnvironmentsPath` - The path to the environments folder.
|
|
|
|
- `RolesPath` - The path to the roles folder.
|
2013-09-16 02:28:41 -04:00
|
|
|
|
2013-08-27 17:29:52 -04:00
|
|
|
## 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 Chef:
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
``` {.liquid}
|
2013-10-24 21:33:06 -04:00
|
|
|
{{if .Sudo}}sudo {{end}}chef-solo \
|
2013-08-27 17:29:52 -04:00
|
|
|
--no-color \
|
|
|
|
-c {{.ConfigPath}} \
|
|
|
|
-j {{.JsonPath}}
|
|
|
|
```
|
|
|
|
|
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:
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
- `ConfigPath` - The path to the Chef configuration file. file.
|
|
|
|
- `JsonPath` - The path to the JSON attributes file for the node.
|
|
|
|
- `Sudo` - A boolean of whether to `sudo` the command or not, depending on the
|
|
|
|
value of the `prevent_sudo` configuration.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
|
|
|
## Install Command
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
By default, Packer uses the following command (broken across multiple lines for
|
|
|
|
readability) to install Chef. This command can be customized if you want to
|
|
|
|
install Chef in another way.
|
2013-08-27 17:29:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
``` {.text}
|
2015-06-07 09:12:05 -04:00
|
|
|
curl -L https://www.chef.io/chef/install.sh | \
|
2013-08-27 17:29:52 -04:00
|
|
|
{{if .Sudo}}sudo{{end}} bash
|
|
|
|
```
|
|
|
|
|
|
|
|
This command can be customized using the `install_command` configuration.
|