2011-05-31 02:33:50 +00:00
|
|
|
========================
|
|
|
|
Salt 0.6.0 release notes
|
|
|
|
========================
|
|
|
|
|
|
|
|
The Salt remote execution manager has reached initial functionality! Salt is a
|
|
|
|
management application which can be used to execute commands on remote sets of
|
|
|
|
servers.
|
|
|
|
|
|
|
|
The whole idea behind Salt is to create a system where a group of servers can
|
|
|
|
be remotely controlled from a single master, not only can commands be executed
|
|
|
|
on remote systems, but salt can also be used to gather information about your
|
|
|
|
server environment.
|
|
|
|
|
|
|
|
Unlike similar systems, like Func and MCollective, Salt is extremely simple to
|
|
|
|
setup and use, the entire application is contained in a single package, and the
|
|
|
|
master and minion daemons require no running dependencies in the way that Func
|
|
|
|
requires Certmaster and MCollective requires activeMQ.
|
|
|
|
|
2013-03-18 19:59:27 +00:00
|
|
|
Salt also manages authentication and encryption. Rather than using SSL for
|
2011-05-31 02:33:50 +00:00
|
|
|
encryption, salt manages encryption on a payload level, so the data sent across
|
2013-03-18 19:59:27 +00:00
|
|
|
the network is encrypted with fast AES encryption, and authentication uses RSA
|
2011-05-31 02:33:50 +00:00
|
|
|
keys. This means that Salt is fast, secure, and very efficient.
|
|
|
|
|
2013-03-18 19:59:27 +00:00
|
|
|
Messaging in Salt is executed with ZeroMQ, so the message passing interface is
|
|
|
|
built into salt and does not require an external ZeroMQ server. This also adds
|
2011-05-31 02:33:50 +00:00
|
|
|
speed to Salt since there is no additional bloat on the networking layer, and
|
2013-03-18 19:59:27 +00:00
|
|
|
ZeroMQ has already proven itself as a very fast networking system.
|
2011-05-31 02:33:50 +00:00
|
|
|
|
|
|
|
The remote execution in Salt is "Lazy Execution", in that once the command is
|
|
|
|
sent the requesting network connection is closed. This makes it easier to
|
|
|
|
detach the execution from the calling process on the master, it also means that
|
|
|
|
replies are cached, so that information gathered from historic commands can be
|
|
|
|
queried in the future.
|
|
|
|
|
2012-05-23 04:43:12 +00:00
|
|
|
Salt also allows users to make execution modules in Python. Writers of these
|
2011-05-31 02:33:50 +00:00
|
|
|
modules should also be pleased to know that they have access to the impressive
|
|
|
|
information gathered from PuppetLabs' Facter application, making Salt module
|
|
|
|
more flexible. In the future I hope to also allow Salt to group servers based
|
2013-03-18 19:59:27 +00:00
|
|
|
on Facter information as well.
|
2011-05-31 02:33:50 +00:00
|
|
|
|
|
|
|
All in all Salt is fast, efficient and clean, can be used from a simple command
|
2013-03-18 19:59:27 +00:00
|
|
|
line client or through an API, uses message queue technology to make network
|
2011-05-31 02:33:50 +00:00
|
|
|
execution extremely fast, and encryption is handled in a very fast and
|
|
|
|
efficient manner. Salt is also VERY easy to use and VERY easy to extend.
|
|
|
|
|
2013-07-03 02:23:44 +00:00
|
|
|
You can find the source code for Salt on my GitHub page, I have also set up a
|
2011-05-31 02:33:50 +00:00
|
|
|
few wiki pages explaining how to use and set up Salt. If you are using Arch
|
|
|
|
Linux there is a package available in the Arch Linux AUR.
|
|
|
|
|
2011-11-16 05:41:20 +00:00
|
|
|
Salt 0.6.0 Source: :download:`salt-0.6.0.tar.gz`
|
2011-05-31 02:33:50 +00:00
|
|
|
|
2013-07-03 02:23:44 +00:00
|
|
|
GitHub page: |saltrepo|
|
2011-05-31 02:33:50 +00:00
|
|
|
|
2011-11-16 05:41:20 +00:00
|
|
|
Wiki: https://github.com/saltstack/salt/wiki
|
2011-05-31 02:33:50 +00:00
|
|
|
|
2014-02-20 23:16:59 +00:00
|
|
|
Arch Linux Package: https://aur.archlinux.org/packages/salt-git/
|
2011-05-31 02:33:50 +00:00
|
|
|
|
|
|
|
I am very open to contributions, for instance I need packages for more Linux
|
|
|
|
distributions as well as BSD packages and testers.
|
|
|
|
|
|
|
|
Give Salt a try, this is the initial release and is not a 1.0 quality release,
|
|
|
|
but it has been working well for me! I am eager to get your feedback!
|