-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workspace bumped, image source and save changed, old versions retracted
- Loading branch information
Showing
8 changed files
with
86 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
// Package drivervbox implements a kutti driver for Oracle VirtualBox. | ||
// It uses the VBoxManage tool to talk to VirtualBox. | ||
// | ||
// For cluster networking, it uses VirtualBox NAT networks. It allows | ||
// port forwarding for host access to nodes. | ||
// For nodes, it creates virtual machines by importing pre-packaged | ||
// OVA files, maintained by the companion driver-vbox-images project. | ||
// For images, it uses the aforesaid OVA files, downloading the list | ||
// from the URL pointed to by the ImagesSourceURL variable. | ||
// | ||
// The details of individual operations can be found in the online | ||
// documentation. Details about the interface between the driver and | ||
// a running VM can be found at the driver-vbox-images project: | ||
// https://github.com/kuttiproject/driver-vbox-images | ||
package drivervbox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
package drivervbox | ||
|
||
import ( | ||
"errors" | ||
"os" | ||
"os/exec" | ||
"path" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,7 @@ go 1.16 | |
require ( | ||
github.com/kuttiproject/drivercore v0.1.2 | ||
github.com/kuttiproject/kuttilog v0.1.2 | ||
github.com/kuttiproject/workspace v0.2.1 | ||
github.com/kuttiproject/workspace v0.2.2 | ||
) | ||
|
||
retract [v0.1.0, v0.1.2] // Image source changed to kuttiproject/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters