aboutsummaryrefslogtreecommitdiff
path: root/rumba/executors/docker.py
Commit message (Collapse)AuthorAgeFilesLines
* executors: Fix fetching file with dockerSander Vrijders2018-06-071-3/+3
| | | | | Fetching a file with docker was not working properly, since path was called instead of os.path.
* rumba: Update copyright on license headersSander Vrijders2018-04-231-3/+2
| | | | | This updates the copyright on the license headers to that it is extended to the current year.
* testbeds: Add docker testbedNick Aerts2018-03-201-0/+80
This adds support for a testbed based on Docker containers running on the local host. Bridging the containers can be done using built-in Linux bridging or using OpenVSwitch bridges. A new resource 'executor' has been added to abstract away command execution on nodes on the testbed. Executors have been created for local command execution, docker exec based command execution and SSH-based command execution. This has also been changed in the prototypes to execute using the correct executor.