Programming
AI/ML
Automation (RPA)
Software Design
JS Frameworks
.Net Stack
Java Stack
Django Stack
Database
DevOps
Testing
Cloud Computing
Mobile Development
SAP Modules
Salesforce
Networking
BIG Data
BI and Data Analytics
Web Technologies
All Interviews

Top 23 Ansible Interview Questions and Answers

20/Oct/2020 | 10 minutes to read

devops

Here is a List of essential Ansible Interview Questions and Answers for Freshers and mid level of Experienced Professionals. All answers for these Ansible questions are explained in a simple and easiest way. These basic, advanced and latest Ansible questions will help you to clear your next Job interview.


Ansible Interview Questions and Answers

These questions are targeted for Ansible tool used for application deployment and configuration management. You must know the answers of these frequently asked Ansible questions to clear the interview.


1. What is Ansible?

Ansible is an open-source software configuration management and application deployment tool that provides the capabilities to automate the tasks like cloud provisioning, application deployment, configuration management and continuous delivery. Ansible has capability to setup infrastructure as a code.

2. How to create a directory using Ansible?

You can create a directory in Ansible using below code.

  - name: Create a directory if it does not exist
    ansible.builtin.file:
    path: /etc/some_directory
    state: directory
For more file relared operation visit Manage files in Ansible.

3. Describe Ansible architecture.

Ansible is an automation engine that automates the configuration management, cloud provisioning, deployments and many other IT needs. Ansible is designed for multi-tier deployments and provides the capability to manage all inter-relate systems instead of managing one system at a time. To accomplish the automation it uses a very simple language known as YAML. There are different components of Ansible architecture which accomplish the automation activity.
  • Modules are the code scripts Ansible executes.
  • Module Utilities are the functions which are used by many modules to eliminate code duplication.
  • Plugins provide extensions for core features of Ansible like logging output, connecting to inventory etc.
  • Inventory also known as host file and is a list of managed nodes. Ansible represents the machines it manages in a file known as host file.
  • Playbooks are the ordered tasks which can be executed repeatedly. Playbooks are written in YAML and can include variables and tasks both.
  • The Ansible search path determines the files which Ansible playbook will use on run.
For more visit Ansible Architecture and for basic concepts visit Ansible components.

4. How to pass a variable to ansible playbook in the command line?

5. How to safely limit Ansible playbooks to a single machine?

6. Differentiate Ansible Playbooks vs Roles.

7. How to automatically install Ansible Galaxy roles?

8. How to ignore SSH authenticity checking in ansible?

9. How to run only one task in ansible playbook?

10. How to move or rename a file using an Ansible task on a remote system?

11. How to write multiple line shell script in Ansible?

12. What syntax Ansible playbooks use?

Ansible use YAML syntax in it's playbooks.

13. How to copy multiple files into remote nodes by Ansible in a task?

14. How to delete files and folders inside a directory in Ansible?

15. How to get the name of the user running ansible?

16. How to set a variable to file content in Ansible?

17. How to get the list of Ansible pre-defined variables?

18. How to access local environment variables in Ansible?

19. How to get logs of Ansible Playbook module executions?

20. How to stop Ansible from creating .retry files in the home directory?

21. What is Ansible Tower?

22. How will you run a task in Ansible when variable is undefined?

23. How will you get the host name of current machine as defined in hosts file?

Some General Interview Questions for Ansible

1. How much will you rate yourself in Ansible?

When you attend an interview, Interviewer may ask you to rate yourself in a specific Technology like Ansible, So It's depend on your knowledge and work experience in Ansible.

2. What challenges did you face while working on Ansible?

This question may be specific to your technology and completely depends on your past work experience. So you need to just explain the challenges you faced related to Ansible in your Project.

3. What was your role in the last Project related to Ansible?

It's based on your role and responsibilities assigned to you and what functionality you implemented using Ansible in your project. This question is generally asked in every interview.

4. How much experience do you have in Ansible?

Here you can tell about your overall work experience on Ansible.

5. Have you done any Ansible Certification or Training?

It depends on the candidate whether you have done any Ansible training or certification. Certifications or training are not essential but good to have.

Conclusion

We have covered some frequently asked Ansible Interview Questions and Answers to help you for your Interview. All these Essential Ansible Interview Questions are targeted for mid level of experienced Professionals and freshers.
While attending any Ansible Interview if you face any difficulty to answer any question please write to us at info@qfles.com. Our IT Expert team will find the best answer and will update on the portal. In case we find any new Ansible questions, we will update the same here.