46b1a999c6
* Build documentation for Ansible-2.10 (formerly known as ACD). Builds plugin docs from collections whose source is on galaxy The new command downloads collections from galaxy, then finds the plugins inside of them to get the documentation for those plugins. * Update the python syntax checks * docs builds can now require python 3.6+. * Move plugin formatter code out to an external tool, antsibull-docs. Collection owners want to be able to extract docs for their own websites as well. * The jinja2 filters, tests, and other support code have moved to antsibull * Remove document_plugins as that has now been integrated into antsibull-docs * Cleanup and bugfix to other build script code: * The Commands class needed to have its metaclass set for abstractmethod to work correctly * Fix lint issues in some command plugins * Add the docs/docsite/rst/collections to .gitignore as everything in that directory will be generated so we don't want any of it saved in the git repository * gitignore the build dir and remove edit docs link on module pages * Add docs/rst/collections as a directory to remove on make clean * Split the collections docs from the main docs * remove version and edit on github * remove version banner for just collections * clarify examples need collection keyword defined * Remove references to plugin documentation locations that no longer exist. * Perhaps the pages in plugins/*.rst should be deprecated altogether and their content moved? * If not, perhaps we want to rephrase and link into the collection documentation? * Or perhaps we want to link to the plugins which are present in collections/ansible/builtin? * Remove PYTHONPATH from the build-ansible calls One of the design goals of the build-ansible.py script was for it to automatically set its library path to include the checkout of ansible and the library of code to implement itself. Because it automatically includes the checkout of ansible, we don't need to set PYTHONPATH in the Makefile any longer. * Create a command to only build ansible-base plugin docs * When building docs for devel, only build the ansible-base docs for now. This is because antsibull needs support for building a "devel tree" of docs. This can be changed once that is implemented * When building docs for the sanity tests, only build the ansible-base plugin docs for now. Those are the docs which are in this repo so that seems appropriate for now. * Docs: User guide overhaul, part 5 (#70307) (cherry picked from commitdb354c0300
) * Need to return any error code from running antsibull-docs (#70763) This way we fail early if there's a problem (cherry picked from commit1e3989c9f7
) Co-authored-by: Alicia Cozine <879121+acozine@users.noreply.github.com>
197 lines
9.8 KiB
ReStructuredText
197 lines
9.8 KiB
ReStructuredText
.. _playbooks_reuse:
|
|
|
|
**************************
|
|
Re-using Ansible artifacts
|
|
**************************
|
|
|
|
You can write a simple playbook in one very large file, and most users learn the one-file approach first. However, breaking tasks up into different files is an excellent way to organize complex sets of tasks and reuse them. Smaller, more distributed artifacts let you re-use the same variables, tasks, and plays in multiple playbooks to address different use cases. You can use distributed artifacts across multiple parent playbooks or even multiple times within one playbook. For example, you might want to update your customer database as part of several different playbooks. If you put all the tasks related to updating your database in a tasks file, you can re-use them in many playbooks while only maintaining them in one place.
|
|
|
|
.. contents::
|
|
:local:
|
|
|
|
Creating re-usable files and roles
|
|
==================================
|
|
|
|
Ansible offers four distributed, re-usable artifacts: variables files, task files, playbooks, and roles.
|
|
|
|
- A variables file contains only variables.
|
|
- A task file contains only tasks.
|
|
- A playbook contains at least one play, and may contain variables, tasks, and other content. You can re-use tightly focused playbooks, but you can only re-use them statically, not dynamically.
|
|
- A role contains a set of related tasks, variables, defaults, handlers, and even modules or other plugins in a defined file-tree. Unlike variables files, task files, or playbooks, roles can be easily uploaded and shared via Ansible Galaxy. See :ref:`playbooks_reuse_roles` for details about creating and using roles.
|
|
|
|
.. versionadded:: 2.4
|
|
|
|
Re-using playbooks
|
|
==================
|
|
|
|
You can incorporate multiple playbooks into a master playbook. However, you can only use imports to re-use playbooks. For example:
|
|
|
|
.. code-block:: yaml
|
|
|
|
- import_playbook: webservers.yml
|
|
- import_playbook: databases.yml
|
|
|
|
Importing incorporates playbooks in other playbooks statically. Ansible runs the plays and tasks in each imported playbook in the order they are listed, just as if they had been defined directly in the master playbook.
|
|
|
|
Re-using files and roles
|
|
========================
|
|
|
|
Ansible offers two ways to re-use files and roles in a playbook: dynamic and static.
|
|
|
|
- For dynamic re-use, add an ``include_*`` task in the tasks section of a play:
|
|
|
|
- :ref:`include_role <include_role_module>`
|
|
- :ref:`include_tasks <include_tasks_module>`
|
|
- :ref:`include_vars <include_vars_module>`
|
|
|
|
- For static re-use, add an ``import_*`` task in the tasks section of a play:
|
|
|
|
- :ref:`import_role <import_role_module>`
|
|
- :ref:`import_tasks <import_tasks_module>`
|
|
|
|
Task include and import statements can be used at arbitrary depth.
|
|
|
|
You can still use the bare :ref:`roles <roles_keyword>` keyword at the play level to incorporate a role in a playbook statically. However, the bare :ref:`include <include_module>` keyword, once used for both task files and playbook-level includes, is now deprecated.
|
|
|
|
Includes: dynamic re-use
|
|
------------------------
|
|
|
|
Including roles, tasks, or variables adds them to a playbook dynamically. Ansible processes included files and roles as they come up in a playbook, so included tasks can be affected by the results of earlier tasks within the top-level playbook. Included roles and tasks are similar to handlers - they may or may not run, depending on the results of other tasks in the top-level playbook. The primary advantage of using ``include_*`` statements is looping. When a loop is used with an include, the included tasks or role will be executed once for each item in the loop.
|
|
|
|
You can pass variables into includes. See :ref:`ansible_variable_precedence` for more details on variable inheritance and precedence.
|
|
|
|
Imports: static re-use
|
|
----------------------
|
|
|
|
Importing roles, tasks, or playbooks adds them to a playbook statically. Ansible pre-processes imported files and roles before it runs any tasks in a playbook, so imported content is never affected by other tasks within the top-level playbook.
|
|
|
|
You can pass variables to imports. You must pass variables if you want to run an imported file more than once in a playbook. For example:
|
|
|
|
.. code-block:: yaml
|
|
|
|
tasks:
|
|
- import_tasks: wordpress.yml
|
|
vars:
|
|
wp_user: timmy
|
|
- import_tasks: wordpress.yml
|
|
vars:
|
|
wp_user: alice
|
|
- import_tasks: wordpress.yml
|
|
vars:
|
|
wp_user: bob
|
|
|
|
See :ref:`ansible_variable_precedence` for more details on variable inheritance and precedence.
|
|
|
|
.. _dynamic_vs_static:
|
|
|
|
Comparing includes and imports: dynamic vs. static
|
|
--------------------------------------------------
|
|
|
|
Each approach to re-using distributed Ansible artifacts has advantages and limitations. You may choose dynamic re-use for some playbooks and static re-use for others. Although you can use both dynamic and static re-use in a single playbook, it is best to select one approach per playbook. Mixing static and dynamic re-use can introduce difficult-to-diagnose bugs into your playbooks. This table summarizes the main differences so you can choose the best approach for each playbook you create.
|
|
|
|
.. table::
|
|
:class: documentation-table
|
|
|
|
========================= ======================================== ========================================
|
|
.. Include_* Import_*
|
|
========================= ======================================== ========================================
|
|
Type of re-use Dynamic Static
|
|
|
|
When processed At runtime, when encountered Pre-processed during playbook parsing
|
|
|
|
Task or play All includes are tasks ``import_playbook`` cannot be a task
|
|
|
|
Task options Apply only to include task itself Apply to all child tasks in import
|
|
|
|
Calling from loops Executed once for each loop item Cannot be used in a loop
|
|
|
|
Using ``--list-tags`` Tags within includes not listed All tags appear with ``--list-tags``
|
|
|
|
Using ``--list-tasks`` Tasks within includes not listed All tasks appear with ``--list-tasks``
|
|
|
|
Notifying handlers Cannot trigger handlers within includes Can trigger individual imported handlers
|
|
|
|
Using ``--start-at-task`` Cannot start at tasks within includes Can start at imported tasks
|
|
|
|
Using inventory variables Can ``include_*: {{ inventory_var }}`` Cannot ``import_*: {{ inventory_var }}``
|
|
|
|
With playbooks No ``include_playbook`` Can import full playbooks
|
|
|
|
With variables files Can include variables files Use ``vars_files:`` to import variables
|
|
|
|
========================= ======================================== ========================================
|
|
|
|
Re-using tasks as handlers
|
|
==========================
|
|
|
|
You can also use includes and imports in the :ref:`handlers` section of a playbook. For instance, if you want to define how to restart Apache, you only have to do that once for all of your playbooks. You might make a ``restarts.yml`` file that looks like:
|
|
|
|
.. code-block:: yaml
|
|
|
|
# restarts.yml
|
|
- name: restart apache
|
|
service:
|
|
name: apache
|
|
state: restarted
|
|
|
|
- name: restart mysql
|
|
service:
|
|
name: mysql
|
|
state:restarted
|
|
|
|
You can trigger handlers from either an import or an include, but the procedure is different for each method of re-use. If you include the file, you must notify the include itself, which triggers all the tasks in ``restarts.yml``. If you import the file, you must notify the individual task(s) within ``restarts.yml``. You can mix direct tasks and handlers with included or imported tasks and handlers.
|
|
|
|
Triggering included (dynamic) handlers
|
|
--------------------------------------
|
|
|
|
Includes are executed at run-time, so the name of the include exists during play execution, but the included tasks do not exist until the include itself is triggered. To use the ``restart apache`` task with dynamic re-use, refer to the name of the include itself. This approach triggers all tasks in the included file as handlers. For example, with the task file shown above:
|
|
|
|
.. code-block:: yaml
|
|
|
|
- trigger an included (dynamic) handler
|
|
hosts: localhost
|
|
handlers:
|
|
- name: restart services
|
|
include_tasks: restarts.yml
|
|
tasks:
|
|
- command: "true"
|
|
notify: restart services
|
|
|
|
Triggering imported (static) handlers
|
|
-------------------------------------
|
|
|
|
Imports are processed before the play begins, so the name of the import no longer exists during play execution, but the names of the individual imported tasks do exist. To use the ``restart apache`` task with static re-use, refer to the name of each task or tasks within the imported file. For example, with the task file shown above:
|
|
|
|
.. code-block:: yaml
|
|
|
|
- trigger an imported (static) handler
|
|
hosts: localhost
|
|
handlers:
|
|
- name: restart services
|
|
import_tasks: restarts.yml
|
|
tasks:
|
|
- command: "true"
|
|
notify: restart apache
|
|
- command: "true"
|
|
notify: restart mysql
|
|
|
|
.. seealso::
|
|
|
|
:ref:`utilities_modules`
|
|
Documentation of the ``include*`` and ``import*`` modules discussed here.
|
|
:ref:`working_with_playbooks`
|
|
Review the basic Playbook language features
|
|
:ref:`playbooks_variables`
|
|
All about variables in playbooks
|
|
:ref:`playbooks_conditionals`
|
|
Conditionals in playbooks
|
|
:ref:`playbooks_loops`
|
|
Loops in playbooks
|
|
:ref:`playbooks_best_practices`
|
|
Tips and tricks for playbooks
|
|
:ref:`ansible_galaxy`
|
|
How to share roles on galaxy, role management
|
|
`GitHub Ansible examples <https://github.com/ansible/ansible-examples>`_
|
|
Complete playbook files from the GitHub project source
|
|
`Mailing List <https://groups.google.com/group/ansible-project>`_
|
|
Questions? Help? Ideas? Stop by the list on Google Groups
|