InterviewSolution
Saved Bookmarks
| 1. |
What is the best way to make Content Reusable/ Redistributable? |
|
Answer» To MAKE content REUSABLE and redistributable Ansible roles can be used. Ansible roles are basically a LEVEL of abstraction to organize playbooks. For example, if we need to execute 10 tasks on 5 systems, writing all of them in the playbook might LEAD to blunders and CONFUSION. Instead we create 10 roles and call them inside the playbook. |
|