2013-10-03 21:17:41 +00:00
|
|
|
---
|
|
|
|
page_title: "Salt - Provisioning"
|
|
|
|
sidebar_current: "provisioning-salt"
|
|
|
|
---
|
|
|
|
# Salt Provisioner
|
|
|
|
|
|
|
|
**Provisioner name: `salt`**
|
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
The salt Provisioner allows you to provision the guest using
|
2013-10-03 21:17:41 +00:00
|
|
|
[Salt](http://saltstack.com/) states.
|
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
Salt states are [YAML](http://en.wikipedia.org/wiki/YAML) documents
|
2013-10-03 21:17:41 +00:00
|
|
|
that describes the current state a machine should be in, e.g. what
|
|
|
|
packages should be installed, which services are running, and the
|
|
|
|
contents of arbitrary files.
|
|
|
|
|
|
|
|
## Masterless Quickstart
|
|
|
|
|
|
|
|
What follows is a basic Vagrantfile that will get salt working
|
|
|
|
on a single minion, without a master:
|
|
|
|
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
## Choose your base box
|
|
|
|
config.vm.box = "precise64"
|
|
|
|
|
|
|
|
## For masterless, mount your salt file root
|
|
|
|
config.vm.synced_folder "salt/roots/", "/srv/salt/"
|
|
|
|
|
|
|
|
## Use all the defaults:
|
|
|
|
config.vm.provision :salt do |salt|
|
|
|
|
|
|
|
|
salt.minion_config = "salt/minion"
|
|
|
|
salt.run_highstate = true
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
This sets up a shared folder for the salt root, and copies
|
|
|
|
the minion file over, then runs `state.highstate` on the
|
|
|
|
machine. Your minion file must contain the line
|
2014-05-01 20:49:12 +00:00
|
|
|
`file_client: local` in order to work in a
|
2013-10-03 21:17:41 +00:00
|
|
|
masterless setup.
|
|
|
|
|
|
|
|
## Install Options
|
|
|
|
|
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
* `install_master` (boolean) - Should vagrant install the salt-master
|
2014-05-19 12:01:31 +00:00
|
|
|
on this machine. Not supported on Windows.
|
2013-10-03 21:17:41 +00:00
|
|
|
|
|
|
|
* `no_minion` (boolean) - Don't install the minion, default `false`
|
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
* `install_syndic` (boolean) - Install the salt-syndic, default
|
2014-05-19 12:01:31 +00:00
|
|
|
`false`. Not supported on Windows.
|
2013-10-03 21:17:41 +00:00
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
* `install_type` (stable | git | daily | testing) - Whether to install from a
|
2014-12-02 21:25:30 +00:00
|
|
|
distribution's stable package manager, git tree-ish, daily ppa, or testing repository.
|
2014-05-19 12:01:31 +00:00
|
|
|
Not supported on Windows.
|
2013-10-03 21:17:41 +00:00
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
* `install_args` (develop) - When performing a git install,
|
2014-05-19 12:01:31 +00:00
|
|
|
you can specify a branch, tag, or any treeish. Not supported on Windows.
|
2013-10-03 21:17:41 +00:00
|
|
|
|
|
|
|
* `always_install` (boolean) - Installs salt binaries even
|
|
|
|
if they are already detected, default `false`
|
|
|
|
|
|
|
|
|
|
|
|
## Minion Options
|
|
|
|
These only make sense when `no_minion` is `false`.
|
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
* `minion_config` (string, default: "salt/minion") - Path to
|
2013-10-03 21:17:41 +00:00
|
|
|
a custom salt minion config file.
|
|
|
|
|
|
|
|
* `minion_key` (string) - Path to your minion key
|
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
* `minion_pub` (salt/key/minion.pub) - Path to your minion
|
2013-10-03 21:17:41 +00:00
|
|
|
public key
|
|
|
|
|
2014-12-02 21:25:30 +00:00
|
|
|
* `grains_config` (string) - Path to a custom salt grains file.
|
2013-10-03 21:17:41 +00:00
|
|
|
|
|
|
|
## Master Options
|
|
|
|
These only make sense when `install_master` is `true`.
|
|
|
|
|
|
|
|
* `master_config` (string, default: "salt/minion")
|
|
|
|
Path to a custom salt master config file
|
|
|
|
|
|
|
|
* `master_key` (salt/key/master.pem) - Path to your master key
|
|
|
|
|
|
|
|
* `master_pub` (salt/key/master.pub) - Path to your master public key
|
|
|
|
|
|
|
|
* `seed_master` (dictionary) - Upload keys to master, thereby
|
|
|
|
pre-seeding it before use. Example: `{minion_name:/path/to/key.pub}`
|
|
|
|
|
|
|
|
## Execute States
|
|
|
|
|
|
|
|
Either of the following may be used to actually execute states
|
|
|
|
during provisioning.
|
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
* `run_highstate` - (boolean) Executes `state.highstate` on
|
2013-10-03 21:17:41 +00:00
|
|
|
vagrant up. Can be applied to any machine.
|
2014-05-01 20:49:12 +00:00
|
|
|
* `run_overstate` - (boolean) Executes `state.over` on
|
2013-10-03 21:17:41 +00:00
|
|
|
vagrant up. Can be applied to the master only.
|
|
|
|
|
2014-05-01 18:07:07 +00:00
|
|
|
## Output Control
|
|
|
|
|
|
|
|
These may be used to control the output of state execution:
|
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
* `colorize` (boolean) - If true, output is colorized. Defaults to false.
|
2014-05-01 18:07:07 +00:00
|
|
|
|
2014-05-01 20:49:12 +00:00
|
|
|
* `log_level` (string) - The verbosity of the outputs. Defaults to "debug".
|
|
|
|
Can be one of "all", "garbage", "trace", "debug", "info", or
|
|
|
|
"warning".
|
2013-10-03 21:17:41 +00:00
|
|
|
|
2015-02-13 22:56:54 +00:00
|
|
|
## Miscellaneous
|
|
|
|
|
|
|
|
You can pass any additional command line options to the salt bootstrap script
|
|
|
|
with the following:
|
|
|
|
|
|
|
|
* `bootstrap_options` (string) - Command line options.
|
|
|
|
|
2013-10-03 21:17:41 +00:00
|
|
|
## Pillar Data
|
|
|
|
|
|
|
|
You can export pillar data for use during provisioning by using the ``pillar``
|
|
|
|
command. Each call will merge the data so you can safely call it multiple
|
|
|
|
times. The data passed in should only be hashes and lists. Here is an example::
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
config.vm.provision :salt do |salt|
|
|
|
|
|
|
|
|
# Export hostnames for webserver config
|
|
|
|
salt.pillar({
|
|
|
|
"hostnames" => {
|
|
|
|
"www" => "www.example.com",
|
|
|
|
"intranet" => "intranet.example.com"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
# Export database credentials
|
|
|
|
salt.pillar({
|
|
|
|
"database" => {
|
|
|
|
"user" => "jdoe",
|
|
|
|
"password" => "topsecret"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
salt.run_highstate = true
|
|
|
|
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
|
|
|
## Preseeding Keys
|
|
|
|
|
|
|
|
Preseeding keys is the recommended way to handle provisiong
|
|
|
|
using a master.
|
2014-05-01 20:49:12 +00:00
|
|
|
On a machine with salt installed, run
|
2013-10-03 21:17:41 +00:00
|
|
|
`salt-key --gen-keys=[minion_id]` to generate the necessary
|
|
|
|
.pub and .pem files
|
|
|
|
|
|
|
|
For a an example of a more advanced setup, look at the original
|
|
|
|
[plugin](https://github.com/saltstack/salty-vagrant/tree/develop/example).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|