DevOps / Ansible Interview questions
Define an inventory file in Ansible?
An inventory file lists the managed nodes Ansible can operate on, organized into groups so playbooks can target them by name. It can be as simple as a static INI or YAML file, or generated dynamically by querying a cloud provider or CMDB.
# INI-style static inventory [webservers] web1.example.com web2.example.com [dbservers] db1.example.com ansible_user=admin [production:children] webservers dbservers
Groups can nest other groups (as shown with production:children), and per-host or per-group variables can be attached directly in the inventory or via separate group_vars/host_vars directories. Playbooks then reference these groups in their hosts: field, so the same playbook can be pointed at different environments just by swapping the inventory file.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
