-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexp.json
61 lines (61 loc) · 1.22 KB
/
exp.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"version": "1.0.0",
"title": "test",
"description": "test",
"configuration": {
"myarg": "exp.json",
"another_arg": "another.json",
"extraconfig": ""
},
"variables": {
"selected_instance": null
},
"tags": [
"network",
"lala"
],
"controls": [],
"steady-state-hypothesis": {
"title": "Check something",
"probes": [
{
"name": "test probe 1",
"description": "playground probe 1",
"type": "probe",
"provider": {
"type": "python",
"module": "playground.play.probes",
"func": "some_probe",
"arguments": {
"toprint": "${extraconfig}"
}
},
"tolerance": true
}
]
},
"method": [
{
"name": "test action 1",
"description": "playground action 1",
"type": "action",
"provider": {
"type": "python",
"module": "playground.play.actions",
"func": "some_action"
}
}
],
"rollbacks": [
{
"name": "rollback",
"description": "rolling it back",
"type": "action",
"provider": {
"type": "python",
"module": "playground.play.actions",
"func": "some_action"
}
}
]
}