forked from PinSpace-Org/GistPin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
78 lines (78 loc) 路 1.96 KB
/
Copy pathconfig.yaml
File metadata and controls
78 lines (78 loc) 路 1.96 KB
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
apiVersion: v1
kind: ConfigMap
metadata:
name: node-problem-detector-config
namespace: gistpin
data:
kernel-monitor.json: |
{
"plugin": "log",
"config": {
"logPath": "/var/log/kern.log",
"timestamp": "^\\w{3}\\s+\\d+\\s+\\d{2}:\\d{2}:\\d{2}",
"conditions": [
{
"type": "KernelDeadlock",
"reason": "KernelHasNoDeadlock",
"message": "kernel has no deadlock"
}
],
"rules": [
{
"type": "temporary",
"reason": "OOMKilling",
"pattern": "Killed process.*oom_killer"
},
{
"type": "temporary",
"reason": "TaskHung",
"pattern": "task.*blocked for more than.*seconds"
},
{
"type": "permanent",
"reason": "KernelPanic",
"pattern": "kernel panic"
},
{
"type": "permanent",
"reason": "KernelOops",
"pattern": "BUG: unable to handle kernel"
}
]
}
}
docker-monitor.json: |
{
"plugin": "log",
"config": {
"logPath": "/var/log/docker.log",
"timestamp": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}",
"conditions": [],
"rules": [
{
"type": "temporary",
"reason": "CorruptDockerOverlay2",
"pattern": "corrupt.*overlay2"
},
{
"type": "temporary",
"reason": "DockerSocketHung",
"pattern": "docker socket.*hung"
}
]
}
}
health-checker-kubelet.json: |
{
"plugin": "custom",
"config": {
"configPath": "/home/kubernetes/node-problem-detector/health-checker-kubelet.json"
}
}
health-checker-docker.json: |
{
"plugin": "custom",
"config": {
"configPath": "/home/kubernetes/node-problem-detector/health-checker-docker.json"
}
}