DevOps / Ansible Interview questions
What happens internally when Ansible gathers facts?
Fact gathering runs as an implicit task at the start of a play (unless disabled), dispatching the built-in setup module to every host in the play before any of the play's own tasks execute.
The setup module inspects the host directly, reading things like network interfaces, mounted filesystems, distribution and kernel version, and environment variables, and packages all of it into a nested ansible_facts dictionary. This happens once per host per play run and can be relatively slow on hosts with many network interfaces or filesystems, since it's doing real inspection work, not just returning a cached label. If fact caching is configured (to a JSON file, Redis, or another supported backend), gathered facts are also persisted there with a configurable expiration, so a subsequent playbook run - even a completely separate one - can reuse recently-gathered facts instead of re-running setup from scratch on every single execution.
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...
