ansible/rst/index.rst

66 lines
2.6 KiB
ReStructuredText
Raw Normal View History

2012-03-07 17:35:18 +01:00
.. Director documentation master file, created by sphinx-quickstart on Sat Sep 27 13:23:22 2008.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Ansible
=======
2012-03-08 19:36:47 +01:00
Ansible is a radically simple deployment, configuration, and command execution framework.
Other tools in this space have been too complicated for too long, require too much bootstrapping,
and have too much learning curve. Ansible is dead simple and painless to extend. For comparison, Puppet and Chef have about 60k lines of code. Ansible's core is a little over 1000 lines.
2012-03-07 17:35:18 +01:00
2012-03-08 19:36:47 +01:00
Ansible isn't just for configuration -- it's also great for Ad-Hoc tasks,
quickly firing off commands against nodes. Where Ansible excels though, is expressing complex multi-node deployment processes, executing complex sequences of commands on different hosts through the "playbooks" feature.
2012-03-07 17:35:18 +01:00
2012-03-08 19:36:47 +01:00
Ansible does not require programming in any particular language -- you can write modules
as scripts or programs that return simple JSON.
Why use Ansible versus something else? (Puppet, Chef, Fabric, Capistrano,
2012-03-07 17:35:18 +01:00
mCollective, Func, SaltStack, etc?) It will have far less code, it
will be more correct, and it will be the easiest thing to hack on and
use you'll ever see -- regardless of your favorite language of choice.
2012-03-08 19:36:47 +01:00
Systems management doesn't have to be complicated. Ansible's docs will remain
short & simple, and the source will be blindingly obvious.
2012-03-07 17:35:18 +01:00
2012-03-08 19:36:47 +01:00
Design Goals
````````````
2012-03-07 17:35:18 +01:00
* Dead simple setup
* Super fast & parallel by default
2012-03-08 19:36:47 +01:00
* No server or client daemons; use existing SSHd out of the box
2012-03-07 17:35:18 +01:00
* No additional software required on client boxes
* Modules can be written in ANY language
* Awesome API for creating very powerful distributed scripts
* Be usable as non-root
* Create the easiest config management system to use, ever.
2012-03-08 19:36:47 +01:00
About the Author
````````````````
2012-03-07 17:35:18 +01:00
2012-03-08 19:36:47 +01:00
Michael DeHaan is a Raleigh, NC based software developer and architect. He created other
DevOps programs such as Cobbler, the popular Linux install server.
Cobbler is used to deploy mission critical systems all over the planet, in industries
ranging from massively multiplayer gaming, core internet infrastructure, finance,
chip design, and more. Michael also helped co-author of Func, which is used
to orchestrate systems in lots of diverse places.
2012-03-08 19:36:47 +01:00
Ansible is an GPLv3 licensed open source project, so see the contributions section for how to
get involved.
Contents
========
2012-03-07 17:35:18 +01:00
.. toctree::
:maxdepth: 3
gettingstarted
patterns
modules
2012-03-08 19:36:47 +01:00
YAMLScripts
2012-03-07 17:35:18 +01:00
playbooks
examples
2012-03-07 17:35:18 +01:00
api
communicate
man