2011-08-27 20:59:10 +00:00
|
|
|
========================
|
|
|
|
Salt 0.9.0 Release Notes
|
|
|
|
========================
|
|
|
|
|
2013-12-26 21:12:56 +00:00
|
|
|
:release: 2011-08-27
|
|
|
|
|
2011-08-27 20:59:10 +00:00
|
|
|
Salt 0.9.0 is here. This is an exciting release, 0.9.0 includes the new network
|
|
|
|
topology features allowing peer salt commands and masters of masters via the
|
|
|
|
syndic interface.
|
|
|
|
|
2013-03-18 19:59:27 +00:00
|
|
|
0.9.0 also introduces many more modules, improvements to the API and
|
2011-08-27 20:59:10 +00:00
|
|
|
improvements to the ZeroMQ systems.
|
|
|
|
|
|
|
|
Download!
|
|
|
|
---------
|
|
|
|
|
2013-07-03 02:23:44 +00:00
|
|
|
The Salt source can be downloaded from the salt GitHub site:
|
2011-08-27 20:59:10 +00:00
|
|
|
|
2011-11-16 05:41:20 +00:00
|
|
|
:download:`salt-0.9.0.tar.gz`
|
2011-08-27 20:59:10 +00:00
|
|
|
|
2013-03-18 19:59:27 +00:00
|
|
|
Or from PyPI:
|
2011-08-27 20:59:10 +00:00
|
|
|
|
2014-02-20 23:16:59 +00:00
|
|
|
https://pypi.python.org/packages/source/s/salt/salt-0.9.0.tar.gz
|
2011-08-27 20:59:10 +00:00
|
|
|
|
|
|
|
Here is the md5sum:
|
|
|
|
|
|
|
|
9a925da04981e65a0f237f2e77ddab37
|
|
|
|
|
2012-10-04 21:30:13 +00:00
|
|
|
For instructions on how to set up Salt please see the :ref:`installation`
|
2012-02-06 10:36:54 +00:00
|
|
|
instructions.
|
2011-08-27 20:59:10 +00:00
|
|
|
|
|
|
|
New Features
|
|
|
|
------------
|
|
|
|
|
|
|
|
Salt Syndic
|
|
|
|
```````````
|
|
|
|
|
2014-03-17 22:17:18 +00:00
|
|
|
The new :ref:`Syndic interface <syndic>` allows a master to be
|
|
|
|
commanded via another higher level salt master. This is a powerful solution
|
|
|
|
allowing a master control structure to exist, allowing salt to scale to much
|
|
|
|
larger levels then before.
|
2011-08-27 20:59:10 +00:00
|
|
|
|
|
|
|
Peer Communication
|
|
|
|
``````````````````
|
|
|
|
|
|
|
|
0.9.0 introduces the capability for a minion to call a publication on the
|
|
|
|
master and receive the return from another set of minions. This allows salt
|
|
|
|
to act as a communication channel between minions and as a general
|
|
|
|
infrastructure message bus.
|
|
|
|
|
|
|
|
Peer communication is turned off by default but can be enabled via the ``peer``
|
2013-09-10 11:41:53 +00:00
|
|
|
option in the master configuration file. Documentation on the new :doc:`Peer
|
|
|
|
interface </ref/peer>`.
|
2011-08-27 20:59:10 +00:00
|
|
|
|
|
|
|
Easily Extensible API
|
|
|
|
`````````````````````
|
|
|
|
|
|
|
|
The minion and master classes have been redesigned to allow for specialized
|
|
|
|
minion and master servers to be easily created. An example on how this is done
|
|
|
|
for the master can be found in the ``master.py`` salt module:
|
|
|
|
|
2011-11-16 05:41:20 +00:00
|
|
|
:blob:`salt/master.py`
|
2011-08-27 20:59:10 +00:00
|
|
|
|
|
|
|
The ``Master`` class extends the ``SMaster`` class and set up the main master
|
|
|
|
server.
|
|
|
|
|
|
|
|
The minion functions can now also be easily added to another application via
|
|
|
|
the ``SMinion`` class, this class can be found in the ``minion.py`` module:
|
|
|
|
|
2011-11-16 05:41:20 +00:00
|
|
|
:blob:`salt/minion.py`
|
2011-08-27 20:59:10 +00:00
|
|
|
|
|
|
|
Cleaner Key Management
|
|
|
|
``````````````````````
|
|
|
|
|
|
|
|
This release changes some of the key naming to allow for multiple master keys
|
|
|
|
to be held based on the type of minion gathering the master key.
|
|
|
|
|
|
|
|
The -d option has also been added to the salt-key command allowing for easy
|
|
|
|
removal of accepted public keys.
|
|
|
|
|
|
|
|
The --gen-keys option is now available as well for salt-key, this allows
|
|
|
|
for a salt specific RSA key pair to be easily generated from the command line.
|
|
|
|
|
|
|
|
Improved 0MQ Master Workers
|
|
|
|
```````````````````````````
|
|
|
|
|
|
|
|
The 0MQ worker system has been further refined to be faster and more robust.
|
|
|
|
This new system has been able to handle a much larger load than the previous
|
2013-03-18 19:59:27 +00:00
|
|
|
setup. The new system uses the IPC protocol in 0MQ instead of TCP.
|
2011-08-27 20:59:10 +00:00
|
|
|
|
|
|
|
New Modules
|
|
|
|
-----------
|
|
|
|
|
|
|
|
Quite a few new modules have been made.
|
|
|
|
|
|
|
|
New Minion Modules
|
|
|
|
``````````````````
|
|
|
|
|
|
|
|
apache
|
|
|
|
~~~~~~
|
|
|
|
|
|
|
|
Work directly with apache servers, great for managing balanced web servers
|
|
|
|
|
|
|
|
cron
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
Read out the contents of a systems crontabs
|
|
|
|
|
|
|
|
mdadm
|
|
|
|
~~~~~
|
|
|
|
|
|
|
|
Module to manage raid devices in Linux, appears as the ``raid`` module
|
|
|
|
|
|
|
|
mysql
|
|
|
|
~~~~~
|
|
|
|
|
|
|
|
Gather simple data from MySQL databases
|
|
|
|
|
|
|
|
ps
|
|
|
|
~~
|
|
|
|
|
|
|
|
Extensive utilities for managing processes
|
|
|
|
|
|
|
|
publish
|
|
|
|
~~~~~~~
|
|
|
|
|
2014-12-11 03:34:32 +00:00
|
|
|
Used by the peer interface to allow minions to make publications
|