Salt Stack是什么?

salt是一个新的基础平台管理工具。只需花费数分钟即可运行起来, 扩展性足以支撑管理上万台服务器,数秒钟即可完成数据传递.

Salt delivers a dynamic communication bus for infrastructures that can be used for orchestration, remote execution, configuration management and much more.

See also

离线文档

下载Salt文档的副本:

下载

Salt源码版本可以通过PyPI下载:

安装文档中将给出各操作系统平台下如何得到包及对应的安装方法:

Salt Bootstrap项目是一个以在各平台下能够正确的自动完成Salt安装为目标的shell脚本:

入门指南

本教程将帮你快速开始使用Salt并了解到关于Salt的基础知识:

官方Salt教程

Additional tutorials are available when getting started with Salt

States - Salt配置管理系统:
无Master(Masterless)快速入门:
Salt快速入门
所有的教程都可以在以下列表中找到:
Salt教程列表

深入Salt

Setting up and using Salt is a simple task but its capabilities run much, much deeper. These documents will lead to a greater understating of how Salt will empower infrastructure management.

远程执行

Remote execution is the core function of Salt. Running pre-defined or arbitrary commands on remote hosts.

Modules

Salt modules are the core of remote execution. They provide functionality such as installing packages, restarting a service, running a remote command, transferring files, and infinitely more.

Full list of modules
The giant list of core modules that ship with Salt
Writing modules
A guide on how to write Salt modules.
Returners

Salt returners allow saving minion responses in various datastores or to various locations in addition to display at the CLI.

Full list of returners
Store minion responses in Redis, Mongo, Cassandra, SQL or more.
Writing returners
Extending Salt to communicate with more interfaces is easy, new databases can be supported or custom interfaces can be easily communicated with.

Targeting

Targeting is specifying which minions should execute commands or manage server configuration.

Globbing and regex
Match minions using globbing and regular expressions.
Grains
Match minions using bits of static information about the minion such as OS, software versions, virtualization, CPU, memory, and much more.
Node groups
Statically define groups of minions.
Compound matchers
Combine the above matchers as a single target.
Batching execution
Loop through all matching minions so that only a subset are executing a command at one time.

配置管理

Building on the remote execution core is a robust and flexible configuration management framework. Execution happens on the minions allowing effortless, simultaneous configuration of tens of thousands of hosts.

States

Express the state of a host using small, easy to read, easy to understand configuration files. No programming required.

Full list of states
Install packages, create users, transfer files, start services, and much more.
Pillar System
Salt's Pillar system
States Overview
An overview of States and some of the core components.
Highstate data structure
A dry vocabulary and technical representation of the configuration format that states represent.
Writing states
A guide on how to write Salt state modules. Extending Salt to directly manage in more software is easy.
Renderers

Write state configuration files in the language, templating engine, or file type of choice. Salt's configuration management system is, under the hood, language agnostic.

Full list of renderers
YAML is not the only choice, many systems are available, from alternative templating engines to the PyDSL language for rendering sls formulas.
Renderers
Salt states are only concerned with the ultimate highstate data structure. How that data structure is created is not important.

其他主题

Salt is many splendid things.

File Server
Salt can easily and quickly transfer files (in fact, that's how Salt States work). Even under heavy load, files are chunked and served.
Syndic
A seamless master of masters. Scale Salt to tens of thousands of hosts or across many different networks.
Peer Communication
Allow minions to communicate amongst themselves. For example, configure one minion by querying live data from all the others. With great power comes great responsibility.
Reactor System
The reactor system allows for Salt to create a self aware environment by hooking infrastructure events into actions.
Firewall Settings and Salt
A tutorial covering how to properly firewall a Salt Master server.
Scheduling Executions (like states)
The schedule system in Salt allows for executions to be run of all sorts from the master or minion at automatic intervals.
Network topology
At it's core, Salt is a highly scalable communication layer built on top of ZeroMQ that enables remote execution and configuration management. The possibilities are endless and Salt's future looks bright.
Testing Salt
A howto for writing unit tests and integration tests.
Python API interface
Use Salt programmatically from scripts and programs easily and simply via import salt.
Automatic Updates and Frozen Binary Deployments
Use a frozen install to make deployments easier (Even on Windows!). Or take advantage of automatic updates to keep minions running the latest builds.
Windows Software Manager / Package Repository
Looking for an easy way to manage software on Windows machines? Search no more! Salt has an integrated software package manager for Windows machines! Install software hosted on the master, somewhere on the network, or any HTTP, HTTPS, or ftp server.

Reference

Command-line interface
Read the Salt manpages.
Full list of master settings
Read through the heavily-commented master configuration file.
Full list of minion settings
Read through the heavily-commented minion configuration file.
Full table of contents
Dense but complete.

FAQ

See here for a list of Frequently Asked Questions.

More information about the project

Release notes
Living history of Salt Stack.
Community
How to get involved.
Salt Development
Information for Hacking on Salt