In this post we will see ansible playbook example, Play book is written in yaml format. Inside that we will have multiple tasks and roles
Below is the simple ansible play book with mutiple task
In this post we will see ansible playbook example, Play book is written in yaml format. Inside that we will have multiple tasks and roles
Below is the simple ansible play book with mutiple task
In this tutorial, we will learn about using multiple hosts in ansible playbook
In below example, we configured separate host for each task.
when condition in ansible playbook
In this tutorial, we will learn about when condition in ansible playbook
We don’t have If condition here. Instead of that we can use when condition
In below example we are using when condition based on host
when condition matches you can see the changed: [127.0.0.1]
in result.
Else it will skip the task skipping: [127.0.0.1]
in result
Below is Ansible documentation for conditions https://docs.ansible.com/ansible/latest/user_guide/playbooks_conditionals.html
ignore warning message in ansible
Ignore Error in Ansible playbook
In this tutorial, we will learn to ignore error in ansible playbook.
While Executing play book if any error occurred in a task. Remaining tasks will get ignored
Some Cases we want to ignore the error. Ansible provide option to ignore error on Exception handling
below is the Syntax to ignore error in ansible playbook
In the above example. we are trying to make a duplicate directory which will occur an error. So we used ignore_errors command to ignore the error and to proceed further
we can see the <span class="token punctuation">..</span>.ignoring
https://docs.ansible.com/ansible/latest/user_guide/playbooks_error_handling.html
ignore warning message in ansible
In this tutorial, we will learn to ignore the warning message in ansible logs
While working with ansible playbooks, we will get some annoying warning message which makes us uncomfortable.
Below is the useful code snippet to get rid of ansible warning logs
Ignore Error in Ansible playbook