Added an extra field to JobJson, ExecutorDataFile, that holds the path to the json file representing the executor configuration data. Added a new example job json file (examples/job_thermos.json) that is to be passed to the json client along with the config file to run a thermos job.
11 lines
217 B
JSON
11 lines
217 B
JSON
{
|
|
"name": "hello_world_from_gorealis",
|
|
"cpu": 1.0,
|
|
"ram_mb": 64,
|
|
"disk_mb": 100,
|
|
"executor": "thermos",
|
|
"execDataFile": "examples/thermos_payload.json",
|
|
"service": true,
|
|
"ports": 1,
|
|
"instances": 1
|
|
}
|