salt-stack Getting started with salt-stack

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

This section provides an overview of what salt-stack is, and why a developer might want to use it.

It should also mention any large subjects within salt-stack, and link out to the related topics. Since the Documentation for salt-stack is new, you may need to create initial versions of those related topics.

Versions

VersionsStatusRelease Date
2016.3.2Latest Stable release2016-08-02
2016.3.12016-06-09
2016.3.02016-05-26
2015.8.11Previous Stable release2016-06-14
2015.8.102016-05-20
2015.8.92016-05-17
2015.8.82016-03-17
2015.8.72016-02-11
2015.8.62016-02-04
2015.8.52016-02-02
2015.8.42016-01-25
2015.8.32015-11-25
2015.8.22015-11-13
2015.8.12015-10-01
2015.8.02015-09-09
2015.5.112016-05-20
2015.5.102016-03-11
2015.5.92016-01-09
2015.5.82015-11-24
2015.5.72015-11-13
2015.5.62015-10-01
2015.5.52015-08-20
2015.5.42015-08-13
2015.5.32015-07-01
2015.5.22015-06-03
2015.5.12015-05-20
2015.5.02015-05-06
2014.7.92016-03-11
2014.7.82015-11-13
2014.7.72015-10-01
2014.7.62015-05-18
2014.7.52015-04-16
2014.7.42015-03-30
2014.7.32015-03-25
2014.7.22015-02-09
2014.7.12015-01-13
2014.7.02015-11-03

Command Syntax

Salt commands are executed using a common structure:

salt '*'      pkg.install       vim
     [target] [module.function] [arguments]
 

The target determines which systems apply the command. In the example above we target all ('*' ) the Salt minions. See the targeting minions documentation for more information about targeting Salt minions.

The command (module.function) is the function to execute. In the above example we use the pkg.install function to tell the targets to install a package.

The arguments provide any extra data that is needed by the function you are calling. In the example above we tell the pkg.install function to install the package named vim .

Installation or Setup

Salt can be installed via :

  • salt-bootstrap : a shell script, that can install salt (client and/or master packages) on standard Unix/Linux platform,
  • Platform Specific binaries: available for Windows, Mac OS X and Linux,
  • Package Management systems: available for pacman, apt-get, yum and other package management systems.

Salt Installation via Salt-Bootstrap

Download Salt:

  • via curl: curl -o bootstrap_salt.sh -L https://bootstrap.saltstack.com
  • via wget: wget -O bootstrap_salt.sh https://bootstrap.saltstack.com

bootstrap_salt.sh provides many options. Among them executing the script with:

  • -M flag will install salt-master ,
  • -N flag will not install salt-minion package,
  • -A flag can be used to define the salt-master ip.

It can be invoked with the version of salt to be installed.

Common pattern are:

  • sh bootstrap_salt.sh -M -N stable to install a "stable" salt master,
  • sh bootstrap_salt.sh -A <ip> stable to install a "stable" salt minion, with the master IP defined.

Official Documentation can be found here.

Salt Installation via platform specific binaries:

Latest stable installers can be found here:

Salt Installation via package management systems

Under Ubuntu 16.04

  • add the saltstack repository key to APT via: wget -O - https://repo.saltstack.com/apt/ubuntu/16.04/amd64/latest/SALTSTACK-GPG-KEY.pub | sudo apt-key add -
  • add the repository in apt configuration via sudo echo "deb http://repo.saltstack.com/apt/ubuntu/16.04/amd64/latest denial main" > /etc/apt/sources.list.d/saltstack.list
  • update your apt cache via apt-get update

If you wish to install a salt-master run apt-get install salt-master , otherwise apt-get install salt-minion .

Instructions for other OSes can be found here

Version Numbers

As of Salt version 2014.1.0 , Salt uses a date based system for version numbers. Version numbers are in the format YYYY.MM.R . The year (YYYY ) and month (MM ) indicate when the release was created. The bugfix release number (R ) increments within that feature release.

In order to distinguish future releases from the current release, code names are used. Salt uses the periodic table to derive the next codename. The first release in the date based system was code name Hydrogen , each subsequent release will go to the next atomic release.



Got any salt-stack Question?