-
Notifications
You must be signed in to change notification settings - Fork 29
/
experiment.json
74 lines (74 loc) · 2.21 KB
/
experiment.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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"version": "1.0.0",
"title": "Terminating the greeting service should not impact users",
"description": "How does this experiment impact your users? Are there errors or does the frontend get slower?",
"tags": [
"kubernetes"
],
"configuration": {
"web_app_url": {
"type": "env",
"key": "FRONTEND_URL"
}
},
"steady-state-hypothesis": {
"title": "Services are all available and healthy",
"probes": [
{
"type": "probe",
"name": "application-should-be-alive-and-healthy",
"tolerance": true,
"provider": {
"type": "python",
"module": "chaosk8s.pod.probes",
"func": "pods_in_phase",
"arguments": {
"label_selector": "run=frontend",
"phase": "Running",
"ns": "default"
}
}
},
{
"type": "probe",
"name": "application-must-respond-normally",
"tolerance": 200,
"provider": {
"type": "http",
"url": "${web_app_url}",
"timeout": 3
}
}
]
},
"method": [
{
"type": "action",
"name": "terminate-frontend-service",
"provider": {
"type": "python",
"module": "chaosk8s.pod.actions",
"func": "terminate_pods",
"arguments": {
"label_selector": "run=frontend",
"ns": "default"
}
}
},
{
"type": "probe",
"name": "fetch-application-logs",
"provider": {
"type": "python",
"module": "chaosk8s.pod.probes",
"func": "read_pod_logs",
"arguments": {
"label_selector": "run=frontend",
"last": "30s",
"ns": "default"
}
}
}
],
"rollbacks": []
}