Software to automate the management and configuration of any infrastructure or application at scale. Get access to the Salt software package repository here:
Go to file
John Albietz 0055b69404 updated readme file for typos and clarity
fixed a few typos, but mainly altering the parallel execution paragraph.

Granular controls are possibly a clearer way to frame the parallel execution discussion.
In production, the parallel execution is less important than the flexibility to use
batch groups and powerful filtering.
2012-10-24 11:25:23 -07:00
conf Merge pull request #1540 from s0undt3ch/master 2012-06-30 15:57:40 -07:00
debian Add upstart fuile for syndic 2012-06-12 10:52:44 -06:00
doc fixed the lokkit example that I gave before. added new system-config-firewall-tui command. 2012-07-19 00:42:46 -07:00
pkg updated spec to 0.10.1 2012-07-16 17:39:38 -06:00
salt Fix #1482 2012-07-18 11:37:38 -06:00
scripts Change salt-syndic exec script to instantiate a syndic class rather than a minion. Fixing the bug introduced in ee0072d3e8 2012-07-10 18:10:17 -07:00
tests Add consist test to make sure swarm returns are all the same 2012-07-18 13:24:16 -06:00
.gitignore ignore 'tmp' directory created by integration test 2012-07-01 03:46:43 +05:30
.pylintrc include salt specific builtins 2012-05-01 22:58:16 +05:30
.travis.yml Use Debian's patched M2Crypto on Travis CI. 2012-05-01 14:59:17 -04:00
AUTHORS Add myself to AUTHORS 2012-05-29 11:53:00 -07:00
HACKING.rst Fixed typo 2012-07-16 08:15:49 -06:00
LICENSE Change from British LICENCE to American LICENSE spelling to match spelling in LICENSE file and packaging files 2011-07-27 18:09:56 -06:00
MANIFEST.in python setup.py sdist didn't add scripts folder 2012-06-18 18:30:21 -06:00
README.rst updated readme file for typos and clarity 2012-10-24 11:25:23 -07:00
requirements.txt Removed camelcase from the pycrypto requirement as it's not the original package's spelling 2012-07-13 16:36:25 +02:00
setup.py Added path checking to setup.py 2012-07-15 11:18:38 -07:00
tox.ini - tox boilerplate for when py3k matters 2012-05-30 16:07:12 -06:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

=============
What is Salt?
=============

.. image:: https://secure.travis-ci.org/saltstack/salt.png?branch=develop
   :target: http://travis-ci.org/saltstack/salt

.. rubric:: Were not just talking about NaCl.

Distributed Remote Execution
============================

Salt is a distributed remote execution system used to execute commands and
query data. It was developed in order to bring the best solutions found in the
world of remote execution together and make them better, faster and more
malleable. Salt accomplishes this via its ability to handle larger loads of
information, and not just dozens, but hundreds, or even thousands of individual
servers. It handles them quickly and through a simple yet manageable interface.

Simplicity
==========

Versatility between massive scale deployments and smaller systems may seem
daunting, but Salt is very simple to set up and maintain, regardless of the
size of the project. The architecture of Salt is designed to work with any
number of servers, from a handful of local network systems to international
deployments across disparate datacenters. The topology is a simple
server/client model with the needed functionality built into a single set of
daemons. While the default configuration will work with little to no
modification, Salt can be fine-tuned to meet specific needs.

Granular Controls
=================

Salt also introduces powerful granular controls to the realm of remote execution. 
By default, commands are executed in parallel. However, using more advanced 
options, commands can be executed in batch groups or even in serial. By using 
simple built-in filters or regular expression matching, systems can be targeted by 
hostname, metadata or system properties such as number of cpus or OS type.

Building on Proven Technology
=============================

Salt takes advantage of a number of technologies and techniques. The networking
layer is built with the excellent `ZeroMQ`_ networking library. Salt itself
contains a viable, and transparent, ZeroMQ broker inside the daemon. Salt uses
public keys for authentication with the master daemon, then uses faster AES
encryption for payload communication. This means that authentication and
encryption are also built into Salt. Salt takes advantage of communication via
the most excellent `msgpack`_ library, enabling fast and light network traffic.

.. _`ZeroMQ`: http://www.zeromq.org/

.. _`msgpack`: http://msgpack.org/


Python Client Interface
=======================

Salt execution routines can be written as plain Python modules and the data
collected from execution can be sent back to the master server, or any
arbitrary program. Salt can be called from a simple Python API, or from the
command line. This makes it easy to execute one-off commands as well as
operate as an integral part of a larger application.


Fast, Flexible, Scalable, Secure
================================

The result is a system that can execute commands across groups of
varying size, from very few to very many servers at considerably high
speed. We consider speed to be a feature, not an afterthought. Salts
unique architecture brings together the best of the remote execution
world, amplifies its capabilities and expands its range, resulting in
this system that is as versatile as it is practical. Last but not least,
security is an intrinsic part of Salt and something not just
influencing how source code is written and how tests are done, but
also something that defines the overall architecture and has heavy
influence on the core design tenets.

Open
====

Salt is developed under the `Apache 2.0 license`_, and can be used for
open and proprietary projects. Please submit your expansions back to
the Salt project so that we can all benefit together as Salt grows.
Finally, please sprinkle some Salt around your systems and let the
deliciousness come forth.

.. _`Apache 2.0 license`: http://www.apache.org/licenses/LICENSE-2.0.html