-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpods-errors
executable file
·203 lines (177 loc) · 7.8 KB
/
pods-errors
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#!/usr/bin/env python3
import argparse
import datetime
import json
import logging
import math
import re
import subprocess
import dateutil.parser
LOG = logging.getLogger(__name__)
_suffix_lookup = {
"p": 1024**-4,
"n": 1024**-3,
"u": 1024**-2,
"m": 1024**-1,
"": 1024**0,
"K": 1024**1,
"M": 1024**2,
"G": 1024**3,
"T": 1024**4,
}
_suffix = {0: "", 1: "K", 2: "M", 3: "G", 4: "T"}
def parse_eng(value, unit):
return (float(value)) * _suffix_lookup[unit]
def format_eng(value):
power = math.floor(math.log(value, 1024))
return f"{value/1024**power:.2f}{_suffix[power]}"
EVICTED_RE = re.compile(
f"^{re.escape('Container ')}(.+){re.escape(' was using ')}([0-9]+)([a-zA-Z]?)i{re.escape(', which exceeds its request of ')}([0-9]+)([a-zA-Z]?)i?$"
)
def get_formated_container_status(pod, duration=None):
containers_status = []
containers_status += pod["status"].get("initContainerStatuses", [])
containers_status += pod["status"].get("containerStatuses", [])
messages = []
for container_status in containers_status:
if not container_status["ready"]:
if "message" in container_status.get("lastState", {}).get("terminated", {}):
message = "\n".join(
container_status["lastState"]["terminated"]["message"].strip().split("\n")[-5:]
)
messages.append(
f'Container {container_status["name"]} not ready: '
f'{container_status["lastState"]["terminated"].get("reason", "")} '
f"{message}\n---"
)
elif "message" in container_status.get("state", {}).get("waiting", {}):
messages.append(
f'Container {container_status["name"]} not ready: '
f'{container_status["state"]["waiting"].get("reason", "")} '
f'{container_status["state"]["waiting"]["message"]}'
)
elif "message" in container_status.get("state", {}).get("terminated", {}):
def parse_json(msg):
if msg and msg[0] == "{":
return json.loads(msg).get("msg", msg)
return msg
message = "\n".join(
[
parse_json(msg)
for msg in container_status["state"]["terminated"]["message"].strip().split("\n")[-5:]
]
)
messages.append(
f'Container {container_status["name"]} not ready: '
f'{container_status["state"]["terminated"].get("reason", "")}:\n'
f"{message}\n---"
)
elif duration:
messages.append(
f'Container {container_status["name"]} not ready: Restart count '
f'{container_status["restartCount"]} for {duration}'
)
else:
messages.append(
f'Container {container_status["name"]} not ready: Restart count '
f'{container_status["restartCount"]}'
)
return messages
def main():
parser = argparse.ArgumentParser(description="Display the status of all pods that's not in a good state")
parser.add_argument("--rm-all", action="store_true", help="remove the pods")
parser.add_argument("--rm-evicted", action="store_true", help="remove the evicted pods")
parser.add_argument("--json", action="store_true", help="full pod json output")
parser.add_argument("--start", default="10", help="the considered time to start a pod in minutes")
parser.add_argument("namespace", help="the namespace")
parser.add_argument("pod", nargs="?", help="do on only one pod")
args = parser.parse_args()
namespace = args.namespace
pods = json.loads(
subprocess.check_output(["kubectl", f"--namespace={namespace}", "get", "pod", "--output=json"])
)["items"]
for pod in pods:
if args.pod and pod["metadata"]["name"] != args.pod:
continue
del pod["spec"]
if args.pod and args.json:
print(json.dumps(pod))
continue
messages: list[str] = []
reason = "unknown"
if pod["status"]["phase"] not in ("Running", "Pending", "Succeeded"):
message = pod["status"].get("message", "")
reason = "wrong-phase"
message_split = message.split(".")
if message_split[0] == "The node was low on resource: memory":
new_messages = []
for msg in message_split[1:-1]:
match = EVICTED_RE.match(msg.strip())
if match is None:
print(f"Error parsing message: {msg.strip()}")
exit(1)
current = parse_eng(match.group(2), match.group(3))
request = parse_eng(match.group(4), match.group(5))
new_messages.append(
f"{match.group(1)}: {format_eng(current)} of {format_eng(request)} overpass {format_eng(current - request)}"
)
message = ". ".join(new_messages)
reason = "evicted"
if not message:
container_messages = get_formated_container_status(pod)
if container_messages:
messages += container_messages
reason = "wrong-container-sttatus"
else:
messages.append(f'{pod["status"]["phase"]} - {pod["status"].get("reason")}')
reason = "wrong-status"
else:
messages.append(f'{pod["status"]["phase"]} - {pod["status"].get("reason")}: {message}')
duration = datetime.datetime.utcnow() - dateutil.parser.isoparse(
pod["metadata"]["creationTimestamp"]
).replace(tzinfo=None)
if duration > datetime.timedelta(minutes=int(args.start)):
if pod["status"]["phase"] not in ("Succeeded", "Failed"):
message = get_formated_container_status(pod, duration)
reason = "wrong-container-sttatus"
if message:
messages += message
for condition in pod["status"].get("conditions", []):
if (
condition["status"] != "True"
and condition["reason"] != "PodCompleted"
and (not messages or condition["type"] not in ("ContainersReady", "Ready"))
):
messages.append(
f'Condition {condition["type"]} not reached: '
f'{condition.get("reason", "")} '
f'{condition.get("message", "")}'
)
reason = "wrong-sttatus"
if pod["status"]["phase"] in ("Pending") and not messages:
messages.append(f'{pod["status"]["phase"]} for {duration}')
reason = "wrong-phase"
if messages:
if args.json:
print(json.dumps(pod))
elif args.rm_all or args.rm_evicted and reason == "evicted":
try:
subprocess.call(
[
"kubectl",
f"--namespace={namespace}",
"delete",
"pod",
"--wait=false",
pod["metadata"]["name"],
],
timeout=30,
)
except:
LOG.exception("Unable to delete a pod")
continue
else:
for message in messages:
print(f'{pod["metadata"]["name"]}: {message}')
if __name__ == "__main__":
main()