salt/doc/topics/releases/0.9.0.rst

127 lines
3.2 KiB
ReStructuredText
Raw Normal View History

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.
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
:download:`salt-0.9.0.tar.gz`
2011-08-27 20:59:10 +00:00
Or from PyPI:
2011-08-27 20:59:10 +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`
instructions.
2011-08-27 20:59:10 +00:00
New Features
------------
Salt Syndic
```````````
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``
option in the master configuration file. Documentation on the new :ref:`Peer
interface <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:
: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:
: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
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