Puppet Training Notes from Day 1.
By Jesse Morgan
I am currently in a training class for Puppet, which is a configuration management tool that I use at work. Yesterday was the first day, and here were the things I’ve learned so far:
- Puppet can actually create a dependency graph to visualize class relationships. By enabling “graph” in one of the configs, it will produce a .dot file for each host showing their dependency tree.
- Facter can almost single-handedly replace my linux_inventory.sh script, and do it more consistently and flexibly. The output is yaml, but it’s easy to translate to LDIF.
- Using “environments” is far easier than I thought and something I can implement almost immediately. This can feed off the priority number in our hostnames.
- I can set up puppet-dashboard to be an external node classifier, meaning I no longer need a massive, ugly site.pp file.
- Puppet-lint can be used to test puppet syntax not only for correctness, but for best-practice formatting. I need to add this to my workflow.
- The external_node mentioned in the terminus config line is a script, and I can manually use it to see which classes are applied to which hosts.
- My current dashboard is ungodly slow, so I need to re-implement it with a proper container.
- The Enterprise version of puppet can handle certificate signing right in the interface, which is pretty handy and way more user-friendly.
- The puppet cert –clean command is the proper way to remove an old cert for a host that has been re-imaged.
- Puppet can integrate with Splunk to feed it its reports, allowing you to correlate puppet events with Splunk events.
- host resource can get rid of ugly hosts file manipulation.
- You can set user resource to remove all non-system accounts to ensure no sneaky backdoor accounts are set up.
- Schedule can be used to run tasks if the run happens in the specified timeframe (Edit: thanks for the better description zipkid).
- Exported resources can be used to export data, which can then be imported into Icinga, even further reducing the need for “dynamic detection” on Icinga configuration generation scripts.
So as you can see, a lot of good stuff.