Adding samples

This commit is contained in:
Ian Roddis
2022-01-29 13:25:40 -04:00
parent e3a6c9086a
commit 3fdd568b00
8 changed files with 78 additions and 0 deletions

16
examples/simple_dag.json Normal file
View File

@@ -0,0 +1,16 @@
{
"tag": "simple_dag",
"tasks": {
"task_a": {
"job": {
"command": [ "/bin/echo", "I", "run", "first" ]
},
"children": [ "task_b" ]
},
"task_b": {
"job": {
"command": [ "/bin/echo", "I", "run", "second" ]
}
}
}
}