InterviewSolution
Saved Bookmarks
| 1. |
What is a Playbook? |
|
Answer» Playbook is a way to send COMMANDS to remote computers in a scripted way and has a collection of YAML based files. Instead of using Ansible commands individually to remotely configure computers from the command line, we can configure ENTIRE complex environments by PASSING a script to ONE or more systems. For example, INSTALL and configure something. Basically, a series of resources (e.g. package, copy, file etc) that will achieve our end result in the correct order. |
|