InterviewSolution
Saved Bookmarks
| 1. |
Describe reusability in Ansible? |
|
Answer» Ansible playbook FILES can be REUSED in multiple ways. Imports and Include are helpful to create/break up multiple small files of a massive playbook. Roles are PRIMARILY used to manage various TASKS in a package including handlers, variables, plug-in and other modules. They can also be uploaded and shared by Ansible Galaxy. Ansible Tower automatically fetches the roles that playbook needs from Galaxy, GitHub, or your local SOURCE control. |
|