summaryrefslogtreecommitdiffstats
path: root/docs/docsite/rst/playbook_guide/playbooks.rst
blob: 48ea92fb57eeff7e85f2fd1a8241c7a4afbfdb5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.. _working_with_playbooks:

Working with playbooks
======================

Playbooks record and execute Ansible's configuration, deployment, and orchestration functions.
They can describe a policy you want your remote systems to enforce, or a set of steps in a general IT process.

If Ansible modules are the tools in your workshop, playbooks are your instruction manuals, and your inventory of hosts are your raw material.

At a basic level, playbooks can be used to manage configurations of and deployments to remote machines. 
At a more advanced level, they can sequence multi-tier rollouts involving rolling updates, and can delegate actions to other hosts, interacting with monitoring servers and load balancers along the way.

Playbooks are designed to be human-readable and are developed in a basic text language.
There are multiple ways to organize playbooks and the files they include, and we'll offer up some suggestions on that and making the most out of Ansible.

You should look at `Example Playbooks <https://github.com/ansible/ansible-examples>`_ while reading along with the playbook documentation.
These illustrate best practices as well as how to put many of the various concepts together.

.. toctree::
   :maxdepth: 2

   playbooks_templating
   playbooks_filters
   playbooks_tests
   playbooks_lookups
   playbooks_python_version
   playbooks_templating_now
   playbooks_loops
   playbooks_delegation
   playbooks_conditionals
   playbooks_blocks
   playbooks_handlers
   playbooks_error_handling
   playbooks_environment
   playbooks_reuse
   playbooks_reuse_roles
   playbooks_module_defaults
   playbooks_prompts
   playbooks_variables
   playbooks_vars_facts
   guide_rolling_upgrade