Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Learning SaltStack

You're reading from   Learning SaltStack Learn how to manage your infrastructure by utilizing the power of SaltStack

Arrow left icon
Product type Paperback
Published in Jan 2015
Publisher
ISBN-13 9781784394608
Length 174 pages
Edition 1st Edition
Arrow right icon
Author (1):
Arrow left icon
 Myers Myers
Author Profile Icon Myers
Myers
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

Learning SaltStack
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Diving In – Our First Salt Commands FREE CHAPTER 2. Controlling Your Minions with Remote Execution 3. Execution Modules – Write Your Own Solution 4. Defining the State of Your Infrastructure 5. Expanding Our States with Jinja2 and Pillar 6. The Highstate and Environments 7. Using Salt Cloud to Manage Virtual Minions 8. The Reactor and the Event System Index

The highstate


Until now, we have only been running a single state file at a time using state.sls. However, this doesn't scale very well once we have many state files to manage our entire infrastructure. We want to be able to split out different pieces of our state into different files to make them more modular. How can we accomplish this?

In the last chapter, you learned how to target your pillar files to different minions using a top.sls file, or topfile. Topfiles can also be used in the state system to target different state files to different minions.

Let's create our topfile now, which is in /srv/salt/top.sls, as follows:

base:
  '*minion':
    - apache
  'os_family:debian':
    - match: grain
    - users_and_ssh

Notice that this file is structured almost exactly like the topfile that we used for our pillar data. At the top level (first line), we define our environment. There will be more on environments later—for now, it's enough to note that the default environment is the base environment...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime
Visually different images