Skip to content

Commit

Permalink
Docs cheatsheet - skeleton and ansible-playbook (#76655)
Browse files Browse the repository at this point in the history
  • Loading branch information
acozine committed Mar 31, 2022
1 parent 6557a60 commit 21addac
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions docs/docsite/rst/user_guide/cheatsheet.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
.. _cheatsheet:

**********************
Ansible CLI cheatsheet
**********************

This page shows one or more examples of each Ansible command line utility with some common flags added and a link to the full documentation for the command. This page offers a quick reminder of some common use cases only - it may be out of date or incomplete or both. For canonical documentation, follow the links to the CLI pages.

.. contents::
:local:

ansible-playbook
================

.. code-block:: bash
ansible-playbook -i /path/to/my_inventory_file -u my_connection_user -k /path/to/my_ssh_key -f 3 -T 30 -t my_tag -m /path/to/my_modules -b -K my_playbook.yml
Loads ``my_playbook.yml`` from the current working directory and:
- ``-i`` - uses ``my_inventory_file`` in the path provided for :ref:`inventory <intro_inventory>` to match the :ref:`pattern <intro_patterns>`.
- ``-u`` - connects :ref:`over SSH <connections>` as ``my_connection_user``.
- ``-k`` - uses ``my_ssh_key`` in the path provided for SSH authentication.
- ``-f`` - allocates 3 :ref:`forks <playbooks_strategies>`.
- ``-T`` - sets a 30-second timeout.
- ``-t`` - runs only tasks marked with the :ref:`tag <tags>` ``my_tag``.
- ``-m`` - loads :ref:`local modules <developing_locally>` from ``/path/to/my/modules``.
- ``-b`` - executes with elevated privileges (uses :ref:`become <become>`).
- ``-K`` - prompts the user for the become password.

See :ref:`ansible-playbook` for detailed documentation.

2 changes: 2 additions & 0 deletions docs/docsite/rst/user_guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Getting started

* I'm ready to learn about Ansible. What :ref:`basic_concepts` do I need to learn?
* I want to use Ansible without writing a playbook. How do I use :ref:`ad hoc commands <intro_adhoc>`?
* I'm running an Ansible command and forgot which flags to use. Do you have a :ref:`cheatsheet`?

Writing tasks, plays, and playbooks
===================================
Expand Down Expand Up @@ -91,6 +92,7 @@ If you prefer to read the entire User Guide, here's a list of the pages in order
:maxdepth: 2

quickstart
cheatsheet
basic_concepts
intro_getting_started
intro_adhoc
Expand Down

0 comments on commit 21addac

Please sign in to comment.