Software to automate the management and configuration of infrastructure and applications at scale.
Find a file
Thomas S Hatch bd0ce29c89 Merge pull request #1324 from blast-hardcheese/develop
apt module: Forcing an explicit match on virtual package names
2012-05-22 15:22:46 -07:00
conf Add cython data on the master, Fix #1331 2012-05-21 14:33:42 -06:00
debian add X-Python-Version to debian/control file 2012-05-03 13:12:53 +02:00
doc Merge pull request #1322 from thehoule/documentation 2012-05-22 09:25:17 -07:00
pkg changing locations of python and salt binaries to be variables in init scripts; also changing how daemon functio nis called so it uses the full path 2012-05-10 13:41:50 -07:00
salt Constraining aptitude query even further 2012-05-22 15:20:52 -07:00
scripts Debian/Ubuntu package for upstream acceptance 2012-01-18 12:15:01 -08:00
tests Add support for test mode operations 2012-05-23 00:13:52 +06:00
.gitignore ignore code coverage outputs 2012-05-07 17:08:48 +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 update Authors file 2012-01-09 10:43:00 -07: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 Add package data to the setup 2012-04-25 10:06:13 -06:00
README.rst Add travis badge to README.rst 2012-05-02 09:31:02 -07:00
requirements.txt Add M2Crypto back to the requirement.txt 2012-04-25 02:12:38 -06:00
setup.py undoing previous changes to setup.py; will handle this in the spec file instead 2012-05-09 11:03:20 -07:00
tox.ini Add tox config. 2012-04-20 13:19:39 -07:00

What is Salt?

image

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.

Parallel Execution

The core function of Salt is to enable remote commands to be called in parallel rather than in serial. It does this over a secure and encrypted protocol using the smallest and fastest network payloads possible. All of this is possible and salt still manages to have a simple interface for developers. Salt also introduces more granular controls to the realm of remote execution, allowing for commands to be executed in parallel and for systems to be targeted based on more than just hostname, but by live system properties.

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, 0MQ 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.

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 tenants.

Open

Salt is developed under the Apache 2.0 licence, 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.