Software to automate the management and configuration of infrastructure and applications at scale.
Find a file
2013-02-12 12:02:51 -07:00
conf local repo git example 2013-02-12 10:12:25 -08:00
debian update release in changelog 2013-02-09 14:06:14 -08:00
doc update man pages for 0.13.0 2013-02-12 12:02:51 -07:00
pkg update rpm spec version 2013-02-12 11:14:03 -07:00
salt Fix issue with rh_ip import change 2013-02-12 11:41:13 -07:00
scripts Updated hashbangs with /usr/bin/env for virtual environment installs 2013-01-03 11:36:51 +02:00
tests Added doc for render time state execution and also fixed a bug with the feature. 2013-02-10 00:37:31 -05:00
.gitignore Ignore file created by ctags -R 2013-02-02 00:11:46 -08:00
.pylintrc Merge branch 'develop' of github.com:saltstack/salt into hotfix/pylint/C0103 2012-12-30 15:58:16 +00:00
.travis.yml remove aptsources from travis yaml file 2013-01-21 00:09:35 -07:00
AUTHORS adding myself to authors file 2012-12-17 18:11:23 +01:00
Contributing.rst Update Contributing.rst 2013-02-06 13:50:52 +01:00
HACKING.rst added information about the fedora_setup.sh script M2Crypto provides 2013-02-04 12:29:32 -05: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 Gather everything under the tests 2012-10-24 20:59:33 -06:00
README.rst remove travis target in readme 2013-01-25 17:56:31 -07:00
requirements.txt Removed the comment in requirements.txt to get fpm to work 2012-12-04 15:48:52 +01:00
setup.py Generate salt._version when installing so we can have the git describe information. Fixes #2587. 2013-02-06 04:23:56 +00:00
tox.ini - tox boilerplate for when py3k matters 2012-05-30 16:07:12 -06:00

What is Salt?

We are 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.

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.