Git Product home page Git Product logo

salt101's Introduction

Salt 101 - The Basics of Saltstack Salt

Welcome to the world of Saltstack Salt. Simply put, it is a configuration management system written in Python and controlled using YAML with Jinja templating.

Table of Contents

Prerequisites

Before arriving at class, please make sure these prerequisites are installed on your system.

  • Virtualbox
  • Vagrant
  • Bento Boxes
    • https://app.vagrantup.com/bento
    • Pull down the Debian 8 Image: vagrant box add bento/debian-8.8
      • If you choose not to use Debian 8, you may have to change some of the provided directions to fit your environment
    • I've provided a minimal vagrant config in vagrant-tmp; you can use that or make your own
      • to use the one provided
        • cd vagrant-tmp; vagrant up
      • to make your own
        • mkdir tmp; cd tmp; vagrant init bento/debian-8.8; vagrant up

References

You may find it useful to browse these links prior to the class, or leave them open for reference during the class.

Install Salt

Set up your experimental environment. We will be running 'masterless', so we will only install the 'minion' package and run all commands locally.

  • Bootstrap Script
    1. vagrant ssh
    2. sudo su
    3. wget https://raw.githubusercontent.com/saltstack/salt-bootstrap/develop/bootstrap-salt.sh
    4. sh bootstrap-salt.sh
  • Manually through the package manager
    1. vagrant ssh
    2. sudo su
    3. apt install apt-transport-https ca-certificates
    4. echo "deb https://repo.saltstack.com/apt/debian/8/amd64/latest/ jessie main" > "/etc/apt/sources.list.d/saltstack.list"
    5. apt-key add https://repo.saltstack.com/apt/debian/8/amd64/latest/SALTSTACK-GPG-KEY.pub
    6. apt update
    7. apt install salt-minion

Basics of Salt

Salt can be used as a simple configuration management system, but automation and orchestration are possible with more

  • Masters and Minions
    • Master is the controlling node
    • Minion is the node being controlled
    • A Master is not always needed
    • Commands can be run locally on a minion to query and configure itself
      • salt run from a master and targets one or more minions
      • salt-call runs from a minion and targets the same minion
        • salt-call --local does not reach out to a master, uses local cache
  • SLS, Salt State files
    • YAML and Jinja rendering by default
  • Everything is a module
  • Execution Modules
    • "one off" execution runs
    • usually beneficial to remotely execute a command on a minion
    • Generally better to run a specific module rather than cmd.run
    • salt-call --local sys.doc
    • salt-call --local sys.doc pkg
    • salt-call --local sys.doc pkg.install
    • salt-call --local cmd.run 'dpkg -l | grep systemd'
    • Example:
      # salt-call --local pkg.install vim
      local:
          ----------
          vim:
              ----------
              new:
                  2:7.4.488-7+deb8u3
              old:
          vim-runtime:
              ----------
              new:
                  2:7.4.488-7+deb8u3
              old:
      
  • States
    • Actions to perform on a Minion
    • Similar to execution modules
      • pkg.installed
        • if the defined package is not installed, install it
      • file.managed
        • ensure the content of the file is as defined
        • ensure the ownership of the file is as defined
        • ensure the mode of the file is as defined
    • Idempotent
      • applying a salt state over and over with the same pillar definition should not result in changes on the minion
    • Generally better to run a specific module rather than cmd.run
  • Pillar
    • User defined values for a Minion
    • Pillar data is referenced in state files and Jinja templates
    • Do not reference Pillar inside of Pillar
      • Pillar is rendered once, at the start of a run
    • pkg_name: httpd vs. pkg_name: apache2
    • enabled: false = toggles
    • View pillar for a minion:
      • salt-call --local pillar.items
      • salt-call --local pilar.get apache
  • Grains
    • Facts about the environment on the minion
      • OS type, version, kernel version
      • CPU info
      • Hostname, IPs, MAC addresses
      • Disk drives
      • etc.
    • Minions cannot see the grains of other minions
    • salt-call --local grains.items
    • salt-call --local grains.get virtual
    • Example:
      # salt-call --local grains.get ip4_interfaces
      local:
          ----------
          eth0:
              - 10.0.2.15
          lo:
              - 127.0.0.1
      
    • Can be referenced in Pillar or States
    • Can set custom grains
      • Datacenter: US-East
      • Group: Web
  • Targeting
    • When commanding minions from a master, you can run the module against all minions or a subset of them.
    • Used in the Top files
    • The most basic: The Glob
      • salt \* pkg.install vim
      • salt db\* pkg.install vim
    • more advanced targeting in the Salt Docs
  • Highstate
    • This will apply all of the configured state definitions on the targeted minions
    • merges /srv/salt/top.sls and /srv/pillar/top.sls to configure the minion
    • salt-call --local state.highstate
  • Top.sls
    • The main definition files for the Configuration of Minions in your environment
    • Used during highstate runs
    • Can define multiple environments, base is the default
    • /srv/salt/top.sls
      • define which state files to apply to which minions
    • /srv/pillar/top.sls
      • define which pillar files to apply to which minions
  • init.sls
    • a special sls file that will be called if only the Directory name is referenced
    • similar to index.html on a website
    • in a top.sls file, mysql could mean one of these two files:
      • mysql.sls
      • mysql/init.sls

Basics of YAML

The majority of the code you touch in Salt is YAML. YAML is very human readable and easy to use. You can refer to the official Salt documentation for more information on how YAML is used within Salt, too.

  • Key / Value pairs
    • Strings
      • myvar: value
      • myvar: ""
    • Dictionaries (Mapping)
      • myvar:
          key: value
        
      • myvar: {}
    • Lists (Sequence)
      • myvar:
          - one
          - two
          - three
        
      • myvar: []
    • Multiline input
      • myvar: |
          this is some big input
          on multiple lines
          that will act as one
        
  • Indentation is very important
    • typical is 2 soft tabs (spaces)
  • Comments
    • # begins a comment, even if not at the very start of a line
    • CAUTION: using this style of comment will not stop Jinja from parsing on that line
  • Quotes vs. No Quotes
    • In general, single and double quotes work the same
    • Most of the time, quotes are unneccesary
    • Quotes are neccessary to escape certain characters and to prevent auto-formatting of special terms
      • dates or strings that may look like dates
      • yes, true, True
      • no, false, False
  • Merging
    • matches on Key
    • Dictionaries will merge
    • Strings will overwrite
    • Lists will overwrite

YAML Exercises

In the next few exercises, we will produce three YAML files. The states top file, the pillar top file, and a basic pillar file. This will get us ready to start applying state to a machine.

Create the pillar top file

  1. Get into your Vagrant VM, vagrant ssh if you haven't already.
  2. Become root, sudo su if you haven't already.
  3. Make the salt pillar directory, mkdir -p /srv/pillar
  4. Enter the pillar directory, cd /srv/pillar
  5. Create a file named "top.sls", touch top.sls
  6. Edit top.sls, vi top.sls enter this data into it: (if using vi, hit i to insert text)
base:
  "*":
    - testing
  1. Save the file and exit the editor. If using vi, hit the escape key to leave input mode, then ZZ or :wq to write and quit.

Create the testing pillar file

  1. While in /srv/pillar, make a new file "testing.sls", touch testing.sls
  2. Edit testing.sls and enter this text into it:
anewtest:
  enabled: true
  config:
    testvar: hello world
    testloop:
      varone: foo
      vartwo: bar
  1. Save the file and exit the editor
  2. Check to see if Salt recognizes the pillar data, run salt-call --local pillar.items
~# salt-call --local pillar.items
local:
    ----------
    anewtest:
        ----------
        enabled:
            True
        config:
            ----------
            testvar:
                hello world
            testloop:
                ----------
                varone:
                    foo
                vartwo:
                    bar

Create the states top file

  1. Create the states directory, mkdir -p /srv/salt
  2. Change to the states directory, cd /srv/salt
  3. Create the top file, touch top.sls
  4. Edit the top file and put this data in it:
base:
  "*":
    - teststates
  1. Save the file and exit the editor

Basics of Jinja

Jinja is the default templating language for Salt. Jinja is not a programming language. It can do some things that you'd find in Python, for example, but it is not intended to replace a true scripting or programming language. If you are trying to do advanced things with Jinja, you will know when it is time to move onto one of the other templating options. The official Salt documentation has an extensive description of how to use Jinja with Salt, also.

  • Comments
    • Can be multiline or single line
    • {# ... #}
  • Expressions
    • Variables
      • {{ foo.bar }}
      • {{ foo['bar'] }}
    • Salt Grains
      • {{ grains.oscodename }}
      • {{ grains['oscodename'] }}
  • Statements
    • {% ... %}
    • Tests
      • If
        • {% if myvar %} ... {% endif %}
        • {% if ... %} ... {% elif ... %} ... {% else %} ... {% endif %}
    • Comparisons
      • == is equal
      • != is not equal
      • > is greater than
      • >= is greater than or equal to
      • < is less than
      • <= is less than or equal to
    • Operators
      • in test if a string is in another string, mapping, or sequence
        • {% if "string" in myvar %} ...
      • is, a special true/false test
        • {% if myvar is defined %} ...
        • {% if myvar is iterable %} ...
      • |, apply filter
        • {{ myvar | capitalize }}
      • ~, concatenate strings
        • {{ myvar ~ " concatenate this string" }}
    • Logic
      • and
        • {% if string is defined and string == "this" %} ...
      • or
        • {% if string is defined or if string == "0" %} ...
      • not
        • {% if string is not defined %} ...
    • Loops
      • For
        • {% for i in mylist %} ... {% endfor %}
        • {% for k,v in myvar.iteritems() %} ... {% endfor %}
      • Special Variables
        • loop.first
        • loop.last
    • Assignments
      • {% set myvar = "my string" %}
  • Filters
  • Whitespace
    • Typically, statement blocks will just be removed when rendered, leaving the extra line breaks
    • You can use a - attached to the % to remove whitespace and line breaks
    • {%- ... -%}
    • {% for item in seq -%}
        {{ item }}
      {%- endfor %}
      
    • This can product unexpected results, make sure you double check

Jinja Exercise

In this exercise, we will create a configuration file with Jinja templating.

  1. Change into the states directory, cd /srv/salt
  2. Make a new file, "testfile.conf.j2", touch testfile.conf.j2
  3. Edit the file and put this data into it:
# This is a test configuration file
# Managed by Salt

A Value = {{ varpass.testvar }}

{% if varpass.testloop is defined %}
{% for key, val in varpass.testloop.iteritems() %}
{{ key }} = {{ val }}
{% endfor %}
{% endif %}
  1. Save the file and exit the editor

Beginning Configuration Management

Now that we know the basics of Salt, YAML, and Jinja, we can create a state file that will allow Salt to manage the configuration of the minion.

State file exercise

This exercise will result in a Salt state file which will define what commands and which values should be applied to the minion.

  1. Change into the salt states directory, cd /srv/salt
  2. Create the "teststates.sls" file, touch teststates.sls
  3. Edit the file and enter this data into it:
{% set anewtest = pillar['anewtest'] %}

{% if anewtest.enabled %}

test_configure_file:
  file.managed:
    - name: /root/testfile.conf
    - source: salt://testfile.conf.j2
    - user: root
    - group: root
    - mode: 600
    - template: jinja
    - varpass: {{ anewtest.config }}

{% else %}

anewtest_not_enabled:
  test.succeed_without_changes

{% endif %}
  1. Save the file and exit the editor

Running your first highstate

With all of the files in place from the previous exercises, you should now be able to run your first "highstate".

  1. From any directory, execute the highstate, salt-call --local state.highstate
~# salt-call --local state.highstate
local:
----------
          ID: test_configure_file
    Function: file.managed
        Name: /root/testfile.conf
      Result: True
     Comment: File /root/testfile.conf updated
     Started: 20:53:24.839959
    Duration: 17.802 ms
     Changes:
              ----------
              diff:
                  New file

Summary for local
------------
Succeeded: 1 (changed=1)
Failed:    0
------------
Total states run:     1
Total run time:  17.802 ms
  1. Change directories to /root
  2. Verify that testfile.conf exists and has the proper permissions, ls -la testfile.conf
~# ls -la testfile.conf
-rw------- 1 root root 109 Jul 21 20:53 testfile.conf
  1. Verify that the contents of the file is what we expect, cat testfile.conf
~# cat testfile.conf

# This is a test configuration file
# Managed by Salt

A Value = hello world



varone = foo

vartwo = bar
  1. Run another highstate to verify that our state definition is idempotent, salt-call --local state.highstate
~# salt-call --local state.highstate
local:
----------
          ID: test_configure_file
    Function: file.managed
        Name: /root/testfile.conf
      Result: True
     Comment: File /root/testfile.conf is in the correct state
     Started: 20:57:08.127061
    Duration: 16.498 ms
     Changes:

Summary for local
------------
Succeeded: 1
Failed:    0
------------
Total states run:     1
Total run time:  16.498 ms

Congratulations! You are now able to manage the configuration of a server using Salt.

Practice on your own

Take the concepts learned in this class to the next level. Try to extend the files created earlier to apply more configuration to the virtual instance.

  • Return to the testfile.conf.j2 and clean up the whitespace that is rendered
  • look over the list of built in state modules. Find one that is interesting to you and add it to /srv/salt/teststates.sls
  • Pick another program to install and configure
    • Bonus points for creating new pillar and state files, and adding them to the Top files.
    • Don't bother templating out every line of every configuration file
      • "iterative design", "minimum viable product"
      • Solve one use-case first, refactor later
    • Ideas:
      • mysql
      • apache
      • nginx
      • jenkins
      • gitlab

salt101's People

Contributors

ssplatt 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.