Ansible Facts Gathering Kodekloud

 

Question:  The Nautilus DevOps team is trying to setup a simple Apache web server on all app servers in Stratos DC using Ansible. They also want to create a sample html page for now with some app specific data on it. Below you can find more details about the task.

You will find a valid inventory file /home/thor/playbooks/inventory on jump host (which we are using as an Ansible controller).

    Create a playbook index.yml under /home/thor/playbooks directory on jump host. Using blockinfile Ansible module create a file facts.txt under /root directory on all app servers and add the following given block in it. You will need to enable facts gathering for this task.

Ansible managed node IP is <default ipv4 address>

(You can obtain default ipv4 address from Ansible's gathered facts by using the correct Ansible variable while taking into account Jinja2 syntax)

    Install httpd server on all apps. After that make a copy of facts.txt file as index.html under /var/www/html directory. Make sure to start httpd service after that.

Note: Do not create a separate role for this task, just add all of the changes in index.yml playbook.

Solution:

Go to the mentioned folder

cd /home/thor/playbooks

Create index.yml

vi index.yml

---
-
hosts: stapp01, stapp02, stapp03
gather_facts: true
become: yes
become_method: sudo
tasks:
- name: create a file using blockinfile
blockinfile:
create: yes
path: /root/facts.txt
block: |
Ansible managed node IP is {{ ansible_default_ipv4.address }}
- name: Install apache packages
package:
name: httpd
- name: file copy
shell: cp /root/facts.txt /var/www/html/index.html
- name: ensure httpd is running
systemd:
name: httpd
state: restarted

Then run this command

ansible-playbook  -i inventory index.yml
 
Verify using curl http://stapp01, curl http://stapp02, curl http://stapp03



Download Coding Interview Book and Get More Tutorials for Coding and Interview Solution: Click Here

Download System Design Interview Book and Get More Tutorials and Interview Solution: Click Here

Do you need more Guidance or Help? Then Book 1:1 Quick Call with Me: Click Here

Share on Google Plus

About Ashadullah Shawon

I am Ashadullah Shawon. I am a Software Engineer. I studied Computer Science and Engineering (CSE) at RUET. I Like To Share Knowledge. Learn More: Click Here
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment