Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOpsSchool!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

Is there a future in Ansible?

Is there a future in Ansible? It is clear that, we live in the age of microservices, where automation is not a nice-to-have anymore. Cloud provisioning is an important element of the modern cloud computing model and it became an important to do list in every operation. There are so many different type of automation … Read more

Which is the best Ansible training institute in Hyderabad?

With time businesses go digital, the network plays an important role and it becomes the lifeline of the business. Because manually installing and updating configurations for hundreds of switches, firewalls, and routers are really a time-consuming, costly, and error-prone task. IT Automation is required in order to make the process more efficient while eliminating human … Read more

What is the difference between terraform and Ansible?

In today’s growing world of DevOps, big player are started implementing business processes on IaC (Infrastructure as Code). IaC work as to simplify the process of large-scale management. Modern IaC tools simplify the configuration to resolve server problems in a quick time. Terraform and Ansible are two popular frontline line DevOps tools that provision and … Read more

Which is better for automation: Ansible, Chef or Puppet?

Many organizations are increasingly adopting the new collaborative culture in a way to achieve a competitive edge in modern IT domain. Recent studies shows that the global DevOps market size reached USD 5.8 billion in 2021 and is projected to attain USD 14.97 billion by 2026 with a CAGR of 19.1% during the forecast period. … Read more

Which is the best Ansible training institute in Hyderabad?

If you’re in IT, you must be heard about Ansible. CIO calls it the DevOps “darling” for software automation, in recent times Ansible has come from nowhere to be the No. 1 choice for software automation in many organizations. StackShare lists shows that more than 1,000 companies that use Ansible, including Intel, Evernote, and Hootsuite, … Read more

Use of runtime variables to save into another variable using register in Ansible

Another major use of variables is running a command and using the result of that command to save the result into a variable   – hosts: all tasks: – name: Ansible register variable basic example shell: “find *.txt” args: chdir: “/Users/mdtutorials2/Documents/Ansible” register: find_output – debug: var: find_output # – hosts: all tasks: – name: Ansible … Read more

Run Ansible Adhoc commands or playbook in Local mode

If you are trying to run Ansible Adhoc commands or playbook in Local mode, these articles will help you. Ansible can’t run playbooks locally without ssh if ansible_connection=local is defined in the hosts file, although it can run playbooks locally without ssh with connection: local in the playbook or with flag –connection=local. # # # … Read more

Ansible Playbook Lab & Excercise – Part 2

Execution Mode – Remote Write a Ansible Playbook to create a group called “deploy” Write a Ansible Playbook to create a user called “deploy-user” which is part of group called “group” and with /bin/bash shell. Write a Ansible Playbook to install package named “httpd” in RHEL/centos. Write a Ansible Playbook to start and enable the … Read more