DevOps / Ansible Interview questions
What is the difference between ansible-playbook and ansible ad-hoc commands?
| ansible (ad-hoc) | ansible-playbook |
| Runs a single module against hosts from the command line. | Runs a YAML file describing multiple plays/tasks. |
| Good for quick, one-off checks or fixes. | Good for repeatable, version-controlled automation. |
| Not typically saved or reused. | Saved, reviewed, and re-run consistently over time. |
# Ad-hoc: quick one-off check ansible webservers -m ansible.builtin.ping # Playbook: repeatable, structured automation ansible-playbook site.yml
Ad-hoc commands are ideal for quick, throwaway operations, like checking connectivity, restarting a service on a handful of hosts, or grabbing a fact, where writing a whole playbook would be overkill. ansible-playbook is the tool for anything that should be repeatable, reviewable, and version-controlled, since a playbook can express multi-step logic, handlers, conditionals, and roles that a single ad-hoc command simply can't.
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...
