-
Notifications
You must be signed in to change notification settings - Fork 1
/
plan.json
38 lines (37 loc) · 1.42 KB
/
plan.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
{
"_comment": {
"_comment": "****DELETE THIS NODE**** To create your scenario run plan, assign an ID to each scenario definition (or keep the existing randomly assigned ones if preferred). Define dependencies between scenarios using the `depends_on` field, ensuring there are no cycles (including transitive ones) or self-references.Nodes not referenced will not be executed, Nodes without dependencies will run first, while nodes that share the same parent will execute in parallel. [CURRENT ROOT SCENARIO IS `node-cpu-hog-lachrymogenic`]"
},
"node-cpu-hog-arctogaeal": {
"image": "quay.io/krkn-chaos/krkn-hub:node-cpu-hog",
"name": "node-cpu-hog",
"env": {
"NAMESPACE": "default",
"NODE_CPU_CORE": "2",
"NODE_CPU_PERCENTAGE": "50",
"TOTAL_CHAOS_DURATION": "5"
},
"depends_on": "node-cpu-hog-lachrymogenic"
},
"node-cpu-hog-lachrymogenic": {
"image": "quay.io/krkn-chaos/krkn-hub:node-cpu-hog",
"name": "node-cpu-hog",
"env": {
"NAMESPACE": "default",
"NODE_CPU_CORE": "2",
"NODE_CPU_PERCENTAGE": "50",
"TOTAL_CHAOS_DURATION": "5"
}
},
"node-cpu-hog-tutelo": {
"image": "quay.io/krkn-chaos/krkn-hub:node-cpu-hog",
"name": "node-cpu-hog",
"env": {
"NAMESPACE": "default",
"NODE_CPU_CORE": "2",
"NODE_CPU_PERCENTAGE": "50",
"TOTAL_CHAOS_DURATION": "5"
},
"depends_on": "node-cpu-hog-lachrymogenic"
}
}