Code Monkey home page Code Monkey logo

salty-vagrant's Introduction

Salty Vagrant

Provision Vagrant boxes using Saltstack.

Discussion and questions happen in #salt on Freenode IRC. ping akoumjian.

Introduction

Just like Chef or Puppet, Salt can be used as a provisioning tool. Salty Vagrant lets you use your salt state tree and a your minion config file to automatically build your dev environment the same way you use salt to deploy for other environments.

There are two different ways to use Salty Vagrant. The simplest way uses the salt minion in a masterless configuration. With this option you distribute your state tree along with your Vagrantfile and a dev minion config. The minion will bootstrap itself and apply all necessary states.

The second method lets you specify a remote salt master, which assures that the vagrant minion will always be able to fetch your most up to date state tree. If you use a salt master, you will either need to manually accept new vagrant minions on the master, or distribute preseeded keys along with your vagrant files.

Masterless (Quick Start)

  1. Install Vagrant
  2. Install Salty Vagrant (vagrant gem install vagrant-salt)
  3. Get the Ubuntu 12.04 base box: vagrant box add precise64 http://files.vagrantup.com/precise64.box
  4. Create/Update your Vagrantfile (Detailed in Configuration)
  5. Place your salt state tree in salt/roots/salt
  6. Place your minion config in salt/minion [1]
  7. Run vagrant up and you should be good to go.
[1]Make sure your minion config sets file_client: local for masterless

Using Remote Salt Master

If you are already using Salt for deployment, you can use your existing master to provision your vagrant boxes as well. You will need to do one of the following:

  1. Manually accept the vagrant's minion key after it boots. [2]
  2. Preseed the Vagrant box with minion keys pre-generated on the master
[2]This is not recommended. If your developers need to destroy and rebuild their VM, you will have to repeat the process.

Preseeding Vagrant Minion Keys

On the master, create the keypair and add the public key to the accepted minions folder:

root@saltmaster# salt-key --gen-keys=[minion_id]
root@saltmaster# cp minion_id.pub /etc/salt/pki/minions/[minion_id]

Replace [minion_id] with the id you would like to assign the minion.

Next you want to bundle the key pair along with your Vagrantfile, the salt_provisioner.rb, and your minion config. The directory should look something like this:

myvagrant/
    Vagrantfile
    salt/
        minion.conf
        key/
            minion.pem
            minion.pub

You will need to determine your own secure method of transferring this package. Leaking the minion's private key poses a security risk to your salt network.

The are two required settings for your minion.conf file:

master: [master_fqdn]
id: [minion_id]

Make sure you use the same [minion_id] that you used on the master or it will not match with the key.

Create/Update your Vagrantfile per the example provided in the Configuration section.

Finally, you should be able to run vagrant up and the salt should put your vagrant minion in state.highstate.

Configuration

Your Vagrantfile should look roughly like this:

Vagrant::Config.run do |config|
  config.vm.box = "precise64"
  ## Use all the defaults:
  config.vm.provision :salt do |salt|
    salt.run_highstate = true

    ## Optional Settings:
    # salt.minion_config = "salt/minion.conf"
    # salt.salt_install_type = "git"
    # salt.salt_install_args = "develop"

    ## Only Use these with a masterless setup to
    ## load your state tree:
    # salt.salt_file_root_path = "salt/roots/salt"
    # salt.salt_pillar_root_path = "salt/roots/pillar"

    ## If you have a remote master setup, you can add
    ## your preseeded minion key
    # salt.master = true
    # salt.minion_key = "salt/key/testing.pem"
    # salt.minion_pub = "salt/key/testing.pub"
  end
end

Inside of your Vagrantfile, there are a few parameters you can assign depending on whether you are running masterless or with a remote master.

minion_config : "salt/minion.conf"
Path to your minion configuration file.
minion_key : false
String path to your minion key. Only useful with master=true
minion_pub : false
String path to your minion public key. Only useful with master=true
master : false
Boolean whether or not you want to use a remote master. If set to false, make sure your minion config file has file_client: local set.
salt_install_type : "stable" : "daily" : "git"
Whether to install from a distribution's stable package manager, a daily ppa, or git treeish.
salt_install_args : ""
When performing a git install, you can specify a branch, tag, or any treeish.
salt_file_root_path : "salt/roots/salt"
String path to your salt state tree. Only useful with master=false.
salt_file_root_guest_path : "/srv/salt"
Path to share the file root state tree on the VM. Only use with master=false.
salt_pillar_root_path : "salt/roots/pillar"
Path to share your pillar tree. Only useful with master=false.
salt_pillar_root_guest_path : "/srv/pillar"
Path on VM where pillar tree will be shared. Only use with master=true
salt_nfs_shared_folders: true or false
Some vagrant machines do not support shared folders, for example, FreeBSD. So, if you're running salty vagrant using a masterless setup, using an NFS share might be your only option. This option tries to make salty work with NFS. For more info, please check the Vagrant documentation regarding NFS Shares.

Bootstrapping Salt

Before Salt can be used for provisioning on the target virtual box, the binaries need to be installed. Since Vagrant and Salt support many different distributions and versions of operating systems, the Salt installation process is handled by the shell script scripts/bootstrap-salt-minion.sh. This script runs through a series of checks to determine operating system type and version to then install the Salt binaries using the appropriate methods.

Adding support for other operating systems

In order to install salt for a distribution you need to define:

To Install Dependencies, which is required, one of:
  1. install_<distro>_<distro_version>_<install_type>_deps
  2. install_<distro>_<distro_version>_deps
  3. install_<distro>_<install_type>_deps
  4. install_<distro>_deps
To install salt, which, of course, is required, one of:
  1. install_<distro>_<distro_version>_<install_type>
  2. install_<distro>_<install_type>
And optionally, define a post install function, one of:
  1. install_<distro>_<distro_versions>_<install_type>_post
  2. install_<distro>_<distro_versions>_post
  3. install_<distro>_<install_type>_post
  4. install_<distro>_post

Below is an example for Ubuntu Oneiric:

install_ubuntu_1110_deps() {
apt-get update apt-get -y install python-software-properties add-apt-repository -y 'deb http://us.archive.ubuntu.com/ubuntu/ oneiric universe' add-apt-repository -y ppa:saltstack/salt

}

install_ubuntu_1110_post() {
add-apt-repository -y --remove 'deb http://us.archive.ubuntu.com/ubuntu/ oneiric universe'

}

install_ubuntu_stable() {
apt-get -y install salt-minion

}

Since there is no install_ubuntu_1110_stable() it defaults to the unspecified version script.

The bootstrapping script must be plain POSIX sh only, not bash or another shell script. By design the targeting for each operating system and version is very specific. Assumptions of supported versions or variants should not be made, to avoid failed or broken installations.

Supported Operating Systems

  • Ubuntu 10.x/11.x/12.x
  • Debian 6.x
  • CentOS 6.3

Installation Notes

Ubuntu & Debian

Users have reported that vagrant plugins do not work with the debian packaged vagrant (such as Ubuntu repository). Installing vagrant with gem should work.

  1. sudo apt-get remove vagrant
  2. sudo gem install vagrant
  3. vagrant gem install vagrant-salt

That should get you up and running.

Installing from source

  1. wget https://github.com/saltstack/salty-vagrant/tarball/master -O salty-vagrant.tar.gz
  2. tar zxf salty-vagrant.tar.gz
  3. cd saltstack-salty-vagrant-[hash]
  4. gem build vagrant-salt.gemspec
  5. vagrant gem install vagrant-salt-[version].gem

salty-vagrant's People

Contributors

akoumjian avatar benhosmer avatar ffa avatar gussy avatar holmboe avatar ipmb avatar kiall avatar s0undt3ch avatar thatch45 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.