Difference between revisions of "Ansible playbooks"

From wikieduonline
Jump to navigation Jump to search
 
(7 intermediate revisions by one other user not shown)
Line 12: Line 12:
 
Add the following line <code>#!/usr/bin/env ansible-playbook</code> at the beginning of your playbooks and make it executable <code>chmod +x /path/to/your/playbook.yml</code> to execute without calling ansible-playbook binary.
 
Add the following line <code>#!/usr/bin/env ansible-playbook</code> at the beginning of your playbooks and make it executable <code>chmod +x /path/to/your/playbook.yml</code> to execute without calling ansible-playbook binary.
  
=== Ansible Playbooks Examples===
+
=== [[Ansible Playbooks Examples]]===
 
Create a new file ''touch /tmp/test_file.txt'',  REMOTE_SERVER should be already present in your [[Ansible inventory]]:<code>/etc/ansible/host</code>
 
Create a new file ''touch /tmp/test_file.txt'',  REMOTE_SERVER should be already present in your [[Ansible inventory]]:<code>/etc/ansible/host</code>
  
 
Playbook using module <code>file</code><ref>https://docs.ansible.com/ansible/latest/modules/file_module.html#file-module</ref>:
 
Playbook using module <code>file</code><ref>https://docs.ansible.com/ansible/latest/modules/file_module.html#file-module</ref>:
<pre>
+
 
- hosts: REMOTE_SERVER_HOSTNAME
+
#![[/usr/bin/env]] ansible-playbook
  tasks:
+
  - name: Ansible create a new file called test_fle.txt in /tmp directory
+
- hosts: REMOTE_SERVER_HOSTNAME
    file:
+
  tasks:
      path: "/tmp/test_file.txt"
+
  - name: Ansible create a new file called test_fle.txt in /tmp directory
      state: touch
+
    file:
</pre>
+
      path: "/tmp/test_file.txt"
Important Note: dash symbol (-) and [indentation]] has to be properly formatted.
+
      state: touch
 +
 
 +
Important Note: dash symbol (-) and [[indentation]] has to be properly formatted.
 +
 
 +
Additional examples:
 +
* [[Installing sysstat using Ansible]]
 +
 
 +
 
 +
== Errors ==
 +
[[A playbook must be a list of plays]]
  
 
=== Variables ===
 
=== Variables ===
Line 34: Line 43:
 
# Review different options for running playbooks, including: <code>--limit</code>
 
# Review different options for running playbooks, including: <code>--limit</code>
 
# Review <code>--check</code> option
 
# Review <code>--check</code> option
 +
# Review [[Ansible playbooks examples]]
  
 
== See also ==
 
== See also ==

Latest revision as of 10:10, 18 October 2022

Ansible playbooks[1] are written in YAML text files and define actions to execute against host/devices, check official Ansible playbook introduction: https://docs.ansible.com/ansible/devel/user_guide/playbooks_intro.html

Task definitions or Playbooks[edit]

Task definitions are defined in text files, called playbooks in Ansible terminology, in YAML format. Execution of task definitions or playbooks are make using ansible-playbook command followed by your desired playbook to execute. Playbooks can also use Jinja templates to enable dynamic expressions and access to variables[2].

Ansible Playbook execution:

  • ansible-playbook my_new_created_playbook.yml
  • ansible-playbook my_new_created_playbook.yml -f 10 -f 10 parallelize 10 executions
-f forks

Create "Executable" Playbooks[edit]

Add the following line #!/usr/bin/env ansible-playbook at the beginning of your playbooks and make it executable chmod +x /path/to/your/playbook.yml to execute without calling ansible-playbook binary.

Ansible Playbooks Examples[edit]

Create a new file touch /tmp/test_file.txt, REMOTE_SERVER should be already present in your Ansible inventory:/etc/ansible/host

Playbook using module file[3]:

#!/usr/bin/env ansible-playbook

- hosts: REMOTE_SERVER_HOSTNAME
  tasks:
  - name: Ansible create a new file called test_fle.txt in /tmp directory
    file:
      path: "/tmp/test_file.txt"
      state: touch

Important Note: dash symbol (-) and indentation has to be properly formatted.

Additional examples:


Errors[edit]

A playbook must be a list of plays

Variables[edit]

You can use variables in your playbooks, check official documentation for further information: https://docs.ansible.com/ansible/devel/user_guide/playbooks_variables.html


Activities[edit]

  1. Read Ansible introduction to playbooks: https://docs.ansible.com/ansible/devel/user_guide/playbooks_intro.html
  2. Review different options for running playbooks, including: --limit
  3. Review --check option
  4. Review Ansible playbooks examples

See also[edit]


Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy.

Source: wikiversity

Advertising: