To make HTTPD Service idempotence in Nature using Ansible
Restarting HTTPD Service is not idempotence in nature and also consume more resources suggest a way to rectify this challenge in the Ansible playbook.
Today we will answer above problem so let’s start it.
Idempotence in Ansible
An idempotent operation is one that can be applied multiple times without changing the result beyond the initial application, such as multiplication by zero. Ansible modules are idempotent.
Handlers is used here to make Httpd service Idempotence in nature.
Handlers are just like normal tasks in an Ansible playbook but they run only when if the Task contains a “notify” directive. It also indicates that it changed something
So firstly lets configure our whole setup..
We are running two instances on virtual box
- rhel8_arth —( 192.168.29.202) Controller Node
- rhel exp 2–(192.168.29.225) Target Node
Below is script that I have written. Github link for the same —
https://github.com/HarshAgrawal25/Ansible/tree/master/Making%20httpd%20idempotence/httpd-idem
index.html files is
Before running our yml file on controller node just checking httpd is not installed on target node by the command —
systemctl status httpd
Running the yml file on controller node —
Now going to target node and checking that httpd server is live now or not —
Now if I run yml file again without any change in index.html file the out put will be —
Notice that Handlers will not run as there is no change in index.html file
But if we change the index.html as
And now we will again run yml file on controller node then handlers will run as there is change in index.html file
This is how we will make httpd service idempotence in nature
Thank you!!
https://github.com/HarshAgrawal25/Ansible/tree/master/Making%20httpd%20idempotence/httpd-idem