-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #218 from m-lab/sandbox-pboothe
Make an experiments library
- Loading branch information
Showing
9 changed files
with
402 additions
and
786 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
[ | ||
{ | ||
Datatype: 'lshw', | ||
Filename: 'lshw.json', | ||
Cmd: ['lshw', '-json'], | ||
}, | ||
{ | ||
Datatype: 'lspci', | ||
Filename: 'lspci.txt', | ||
Cmd: ['lspci', '-mm', '-vv', '-k', '-nn'], | ||
}, | ||
{ | ||
Datatype: 'lsusb', | ||
Filename: 'lsusb.txt', | ||
Cmd: ['lsusb', '-v'], | ||
}, | ||
{ | ||
Datatype: 'ipaddress', | ||
Filename: 'ip-address.txt', | ||
Cmd: ['ip', 'address', 'show'], | ||
}, | ||
{ | ||
Datatype: 'iproute4', | ||
Filename: 'ip-route-4.txt', | ||
Cmd: ['ip', '-4', 'route', 'show'], | ||
}, | ||
{ | ||
Datatype: 'iproute6', | ||
Filename: 'ip-route-6.txt', | ||
Cmd: ['ip', '-6', 'route', 'show'], | ||
}, | ||
{ | ||
Datatype: 'uname', | ||
Filename: 'uname.txt', | ||
Cmd: ['uname', '-a'], | ||
}, | ||
{ | ||
Datatype: 'osrelease', | ||
Filename: 'os-release.txt', | ||
Cmd: ['cat', '/etc/os-release'], | ||
}, | ||
{ | ||
Datatype: 'biosversion', | ||
Filename: 'bios_version.txt', | ||
Cmd: ['cat', '/sys/class/dmi/id/bios_version'], | ||
}, | ||
{ | ||
Datatype: 'chassisserial', | ||
Filename: 'chassis_serial.txt', | ||
Cmd: ['cat', '/sys/class/dmi/id/chassis_serial'], | ||
}, | ||
] |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
We have two kinds of daemonset we want to run on our nodes: Those that make the platform work ([core]) and those which cause an actual researcher's experiment to run ([experiments]). | ||
|
||
[templates.json] contains helpful templates for the creation of new daemonsets of both kinds. |
Oops, something went wrong.