Book Image

Mastering SaltStack

By : Joseph Hall
Book Image

Mastering SaltStack

By: Joseph Hall

Overview of this book

Table of Contents (19 chapters)
Mastering SaltStack
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Driving with RAET


We've talked about the concepts behind RAET, but now it's time to get down to business. Let's go ahead and enable it; we can then get started.

Configuring RAET

Setting up Salt to use RAET is actually not a big deal. In the Master and the Minion configuration files, set the transport to raet:

transport: raet

As of version 2015.5, this is still set to zeromq by default, but this may change in future releases.

There are some other changes that come with RAET. As RAET uses a different encryption scheme, it also has its own set of keys. The Master used to store its Minions' public keys in the following directories (inside /etc/salt/pki/master/):

  • minions_pre/: This specifies the Minions that have identified themselves to the Master, but which the Master has not yet accepted

  • minions/: This denotes the Minions that have been identified to and accepted by the Master

  • minions_rejected/: This specifies the Minions that have identified themselves to the Master, but with which the Master has...