Changes between Version 12 and Version 13 of GENIExperimenter/Tutorials/GENIExperimentEngine/DesignSetup
- Timestamp:
- 03/18/15 18:06:40 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GENIExperimenter/Tutorials/GENIExperimentEngine/DesignSetup
v12 v13 165 165 == 5. Create and run an Ansible playbook to install the software you'll need == 166 166 167 N ext you willwrite a playbook to install the software you'll need on all the nodes. Below is a skeleton Ansible file that you use ([attachment:software-install.yaml download]). You will need to fill in the bits marked `# INSERT ARGUMENTS HERE` based on the instructions in the following section. If you get stuck at any point, you can take a look at this [attachment:software-install-solution.yaml solution].167 Now you should have enough knowledge about Ansible to write a playbook to install the software you'll need on all the nodes. Below is a skeleton Ansible file that you use ([attachment:software-install.yaml download]). You will need to fill in the bits marked `# INSERT ARGUMENTS HERE` based on the instructions in the following section. If you get stuck at any point, you can take a look at this [attachment:software-install-solution.yaml solution]. 168 168 169 169 {{{ … … 183 183 }}} 184 184 185 Run this playbook on all the nodes in your slice.185 Run this playbook on your Ansible control machine against all the nodes in your slice. 186 186 187 187 ----