-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjournal.json
107 lines (107 loc) · 2.82 KB
/
journal.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"chaoslib-version": "1.11.0",
"platform": "macOS-10.14.6-x86_64-i386-64bit",
"node": "Aashishs-MacBook-Pro.local",
"experiment": {
"version": "1.0.0",
"title": "What happens if we terminate an instance of the application?",
"description": "If an instance of the application is terminated, the applications as a whole should still be operational.",
"tags": [
"k8s",
"pod",
"http"
],
"configuration": {
"ingress_host": {
"type": "env",
"key": "INGRESS_HOST"
}
},
"steady-state-hypothesis": {
"title": "The app is healthy",
"probes": [
{
"name": "app-responds-to-requests",
"type": "probe",
"tolerance": 200,
"provider": {
"type": "http",
"timeout": 3,
"verify_tls": false,
"url": "http://${ingress_host}/demo/person",
"headers": {
"Host": "go-demo-8.acme.com"
}
}
}
]
},
"method": [
{
"type": "action",
"name": "terminate-app-pod",
"provider": {
"type": "python",
"module": "chaosk8s.pod.actions",
"func": "terminate_pods",
"arguments": {
"label_selector": "app=go-demo-8",
"rand": true,
"ns": "go-demo-8"
}
},
"pauses": {
"after": 2
}
}
],
"dry": false
},
"start": "2020-08-11T18:42:48.735114",
"status": "failed",
"deviated": false,
"steady_states": {
"before": {
"steady_state_met": false,
"probes": [
{
"activity": {
"name": "app-responds-to-requests",
"type": "probe",
"tolerance": 200,
"provider": {
"type": "http",
"timeout": 3,
"verify_tls": false,
"url": "http://${ingress_host}/demo/person",
"headers": {
"Host": "go-demo-8.acme.com"
}
}
},
"output": {
"status": 404,
"headers": {
"Content-Type": "text/plain; charset=utf-8",
"Set-Cookie": "shop_session-id=86ccbac4-c67a-4258-b87a-b194f4f8f060; Max-Age=172800",
"X-Content-Type-Options": "nosniff",
"Date": "Tue, 11 Aug 2020 18:42:48 GMT",
"Content-Length": "19"
},
"body": "404 page not found\n"
},
"status": "succeeded",
"start": "2020-08-11T18:42:48.735844",
"end": "2020-08-11T18:42:48.744402",
"duration": 0.008558,
"tolerance_met": false
}
]
},
"after": null
},
"run": [],
"rollbacks": [],
"end": "2020-08-11T18:42:48.744712",
"duration": 0.03603506088256836
}