SaltStack - A better salt/top.sls - Part 1

Reading time ~5 minutes

Spreading some dynamic goodness into the top.sls state file

In search of a a better top.sls file.

I have my code in all my states in separate formulas each with a separate file_root, and /salt/* files. I have all my data in a separate pillar layout. Things are working good.

Now, I want to clean up the top.sls file so that I don’t have to keep adding hostnames, and assigning the ‘code’ package names to them. This is a job for the grains, and some template/code work. At least I think it is.

Let’s dive in and see if we can get it doing what I want.

An example of my current top.sls file (for me that is /srv/saltstack/salt/top.sls - a non-standard path [^1])

1
2
3
4
5
6
7
8
9
base:
  '*':
    - default
  '*influxdb*':
    - influxdb
    - python
  '*monitor*':
    - grafana
    - shinken

So, if the hostname has ‘influxdb’ in it, the salt state file from my influxdb formula gets called (starting by bringing in /srv/saltstack/formulas/influxdb-formula/influxdb/init.sls).
If if the hostname has monitor in it, then likewise, grafana and shinken come into play.

What I want to be able to do is set some grains, and have this all changed up dynamically instead of being based on host names. Even better if the list of code that gets shoved in is actally pulled from pillar data somewhere, that’s for the next post.

First, the grain setup. Bit of a chicken and egg problem since we need to have the grains setup on the minion before we run salt. Down the road, other systems could be used to inject the grains (cloud-init, etc.) but for now we will just manually set them up. This will be on the fresh instance, after salt-minion is installed, but before the first salt-call.

On the minion

I am going to put them in /etc/salt/grains instead of the salt minion main config file (/etc/salt/minion).
That file is placed there by your distro packages, and will usually be all commented out, and showing the default values. I want to leave that as is, and override changes either in /etc/salt/minion.d/* files, or in this case, the purpose built /etc/salt/grains yaml file.

1
2
3
roles:
  - influxdb
  - python

This will build a static grain called ‘roles’ that has an array of values. I want to be able to have a few roles so I am going to start right out to the gate with an array, and make that work.

We can check if that work buy using the grains.items function. I will be doing this from the minion, so I will use salt-call to invoke the function. We can add filters to just fetch the roles grain, but let’s just get them all, and you can scroll through the output.

# salt-call grains.items
....trimmed for size.....
    pythonversion:
        - 2
        - 7
        - 9
        - final
        - 0
    roles:
        - influxdb
        - python
    saltpath:
        /usr/lib/python2.7/dist-packages/salt
    saltversion:
        2015.8.1
    saltversioninfo:
        - 2015
        - 8
        - 1
        - 0
....trimmed for size.....

There they are along with all the other default caculated grains.

Now, onto getting top.sls file to act on it.

On the master

So, does it work for targeting a minion ?

# salt --log-level=debug -C 'G@roles:influxdb' test.ping
kt-testminion-1.kerkhofftech.ca:
    True

So far, so good. Now onto iterating it for config.

What we want the top.sls to look like (for the role handling) is something like this :

  'roles:influxdb':
    - match: grain
    - influxdb

But we don’t want to have to write this over and overi for every role. In fact, I want to touch this top.sls file as little as possible over its lifetime, and only to change its operation, not configuration. The state files are part of my ‘code’ not my ‘data’. Keeping them separate will help in the long run and allows your state setup to be used at different sites, shared, etc.

We’re going to use some jinja template code to build what we want.

1
2
3
4
5
6
  {% set roles = salt['grains.get']('roles',[]) -%}
  {% for role in roles -%}
  'roles:{{ role }}':
    - match: grain
    - {{ role }}
  {% endfor -%}

Broken down we have:

  • Line 1 : Use the salt function to get the ‘roles’ grain, and default to an empty arry if not there.
  • Line 2 : For each role in the roles array : [influxdb, python] in our case
  • Line 3 : output
    1
    
    roles:influxdb
    or
    1
    
    roles:python
    , again using our sample grain data
  • Line 4 : output
    1
    
    influxdb
    or
    1
    
    python
    so that when it matches that formula init.sls gets pulled in.
  • Line 5 : end the for loop

So, this is my full top.sls now

1
2
3
4
5
6
7
8
9
10
11
12
base:
  '*':
    - default
  '*monitor*':
    - grafana
    - shinken
  {% set roles = salt['grains.get']('roles',[]) -%}
  {% for role in roles -%}
  'roles:{{ role }}':
    - match: grain
    - {{ role }}
  {% endfor -%}

On the minion

Give it a try

1
salt-call --log-level=debug state.show_highstate

You should see a massive load of debug data , but scroll through it, near the top, and you will see your top.sls file being generated

[DEBUG   ] Rendered data from file: /var/cache/salt/minion/files/base/top.sls:
base:
  '*':
    - default
  '*monitor*':
    - grafana
    - shinken
  'roles:influxdb':
    - match: grain
    - influxdb
  'roles:python':
    - match: grain
    - python

todo : Insert success meme here ! :)

Part 2 - What if the role ‘name’ doesn’t match directly with the name of the single formula I want included ? Also, we’re not going to just have one formula for a role, we want multiple formulas to be stuffed in here.
To the Pillar (insert name of comic book character based on the combination of a bat and a man) !


Need help getting your Salt / Dev Ops infrastructure up and working smoothly ? Reach out to me at Kerkhoff Technologies, and we can get you sorted out !

![Kerkhoff Technologies Inc.][kerkhoff] [^1]: I hate how the standard Saltstack locations crap all over my /srv directory as if it owns it. ie. /srv/formulas is a silly place for Salt Formulas. [kerkhoff]: https://d335hnnegk3szv.cloudfront.net/wp-content/uploads/sites/559/2014/06/logo.png

Kubernetes - Teardown - Part 1

https://en.wikipedia.org/wiki/Ship's_wheel#/media/File:Steering_gear_18th_century-numbered.svg# Teardown of Kubernetes - Part 1So I need ...… Continue reading

Collectd, the long way, to Grafana - Part 1

Published on December 13, 2015

SaltStack - A better salt/top.sls - Part 2

Published on November 19, 2015