-
Notifications
You must be signed in to change notification settings - Fork 48
/
pipeline_deadlock_crashloop_test.yaml
412 lines (347 loc) · 19.9 KB
/
pipeline_deadlock_crashloop_test.yaml
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
evaluation_interval: 1m
rule_files:
- prometheus.pipeline_alerts.yaml
tests:
# ----- Tekton Controller Rapid Restart Tests ----
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton pipeline controller is experiencing controller successive restarts so it will be alerted, whereas we are currently not checking
# other pods in the same namespace that restart
- series: 'kube_pod_container_status_restarts_total{namespace="openshift-pipelines", pod="tekton-pipelines-controller-a", source_cluster="cluster01"}'
values: '1+1x780'
- series: 'kube_pod_container_status_restarts_total{namespace="openshift-pipelines", pod="tekton-triggers-controller-a", source_cluster="cluster01"}'
values: '2+2x780'
alert_rule_test:
- eval_time: 10m
alertname: PipelinePodsRepeatedRestarts
exp_alerts:
- exp_labels:
severity: critical
slo: "true"
source_cluster: cluster01
exp_annotations:
summary: >-
Tekton controller is rapidly restarting.
description: >-
Tekton controllers on cluster cluster01 have restarted 15 times recently.
alert_team_handle: <!subteam^S04PYECHCCU>
team: pipelines
runbook_url: https://gitlab.cee.redhat.com/konflux/docs/sop/-/blob/main/pipeline-service/sre/core-pipeline-controller-repeated-restarts.md
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton pipeline controller is experiencing some controller restarts but not fast enough so it should not alert
- series: 'kube_pod_container_status_restarts_total{namespace="openshift-pipelines", pod="tekton-pipelines-controller-a", source_cluster="cluster01"}'
values: '1x780'
alert_rule_test:
- eval_time: 10m
alertname: PipelinePodsRepeatedRestarts
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton pipeline controller is not experiencing controller restarts so it should not alert
- series: 'kube_pod_container_status_restarts_total{namespace="openshift-pipelines", pod="tekton-pipelines-controller-a", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 10m
alertname: PipelinePodsRepeatedRestarts
# ----- PipelineRun Controller Potential Deadlock Kicking Off PipelineRuns ----
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton pipelinerun controller is experiencing delays getting pipelineruns in tenant-1 started and should alert. Also make sure the lack
# of kickoff issues in tenant-2 does not affect the value of the query
- series: 'pipelinerun_kickoff_not_attempted_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '1+1x780'
- series: 'pipelinerun_kickoff_not_attempted_count{namespace="tenant-2", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 85m
alertname: PipelineControllerDeadlock
exp_alerts:
- exp_labels:
severity: critical
slo: "true"
source_cluster: cluster01
exp_annotations:
summary: >-
Tekton pipeline controller appears to have stopped processing active pipelineruns which have not been started yet.
description: >-
Tekton pipeline controller on cluster cluster01 has appeared deadlocked on 2 pipelineruns.
alert_team_handle: <!subteam^S04PYECHCCU>
team: pipelines
runbook_url: https://gitlab.cee.redhat.com/konflux/docs/sop/-/blob/main/pipeline-service/sre/tekton-pipeline-related-deadlocks.md
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton pipelinerun controller is experiencing some delays getting pipelineruns kicked off but not fast enough so it should not alert
- series: 'pipelinerun_kickoff_not_attempted_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '1x780'
alert_rule_test:
- eval_time: 10m
alertname: PipelineControllerDeadlock
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton pipelinerun controller is not experiencing some delays getting pipelineruns kicked off so it should not alert
- series: 'pipelinerun_kickoff_not_attempted_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 10m
alertname: PipelineControllerDeadlock
# ----- TaskRun Controller Potential Deadlock Starting Pods that pass K8s checks ----
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton taskrun controller is experiencing delays getting the k8s approved pods for taskruns in tenant-1 started and should alert. Also make sure the lack
# of pod issues in tenant-2 does not affect the value of the query
- series: 'taskrun_pod_create_not_attempted_or_pending_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '1+1x780'
- series: 'taskrun_pod_create_not_attempted_or_pending_count{namespace="tenant-2", source_cluster="cluster01"}'
values: '0x780'
- series: 'tekton_pipelines_controller_running_taskruns_throttled_by_quota{namespace="tenant-1", source_cluster="cluster01"}'
values: '0x780'
- series: 'tekton_pipelines_controller_running_taskruns_throttled_by_node{namespace="tenant-1", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 85m
alertname: TaskControllerDeadlock
exp_alerts:
- exp_labels:
severity: critical
slo: "true"
source_cluster: cluster01
exp_annotations:
summary: >-
Tekton taskrun controller appears to have stopped processing active taskruns whose underlying Pod have not failed Kubernetes screening.
description: >-
Tekton taskrun controller on cluster cluster01 has appeared deadlocked on 2 taskruns.
alert_team_handle: <!subteam^S04PYECHCCU>
team: pipelines
runbook_url: https://gitlab.cee.redhat.com/konflux/docs/sop/-/blob/main/pipeline-service/sre/tekton-pipeline-related-deadlocks.md
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton taskrun controller is experiencing delays getting the k8s approved pods for taskruns in tenant-1 started and should alert. Also make sure the lack
# of pod issues in tenant-2 does not affect the value of the query
- series: 'taskrun_pod_create_not_attempted_or_pending_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '1+2x780'
- series: 'taskrun_pod_create_not_attempted_or_pending_count{namespace="tenant-2", source_cluster="cluster01"}'
values: '0x780'
- series: 'tekton_pipelines_controller_running_taskruns_throttled_by_quota{namespace="tenant-1", source_cluster="cluster01"}'
values: '1+1x780'
- series: 'tekton_pipelines_controller_running_taskruns_throttled_by_node{namespace="tenant-1", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 85m
alertname: TaskControllerDeadlock
exp_alerts:
- exp_labels:
severity: critical
slo: "true"
source_cluster: cluster01
exp_annotations:
summary: >-
Tekton taskrun controller appears to have stopped processing active taskruns whose underlying Pod have not failed Kubernetes screening.
description: >-
Tekton taskrun controller on cluster cluster01 has appeared deadlocked on 2 taskruns.
alert_team_handle: <!subteam^S04PYECHCCU>
team: pipelines
runbook_url: https://gitlab.cee.redhat.com/konflux/docs/sop/-/blob/main/pipeline-service/sre/tekton-pipeline-related-deadlocks.md
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton taskrun controller is experiencing delays getting the k8s approved pods for taskruns in tenant-1, but only
# from k8s throttling so no alert fires.
- series: 'taskrun_pod_create_not_attempted_or_pending_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '1+1x780'
- series: 'taskrun_pod_create_not_attempted_or_pending_count{namespace="tenant-2", source_cluster="cluster01"}'
values: '0x780'
- series: 'tekton_pipelines_controller_running_taskruns_throttled_by_quota{namespace="tenant-1", source_cluster="cluster01"}'
values: '1+1x780'
- series: 'tekton_pipelines_controller_running_taskruns_throttled_by_node{namespace="tenant-1", source_cluster="cluster01"}'
values: '1+1x780'
alert_rule_test:
- eval_time: 85m
alertname: TaskControllerDeadlock
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton pipelinerun controller is experiencing some delays getting pipelineruns kicked off but not fast enough so it should not alert
- series: 'taskrun_pod_create_not_attempted_or_pending_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '1x780'
alert_rule_test:
- eval_time: 10m
alertname: TaskControllerDeadlock
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton pipelinerun controller is not experiencing some delays getting pipelineruns kicked off so it should not alert
- series: 'taskrun_pod_create_not_attempted_or_pending_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 10m
alertname: TaskControllerDeadlock
# ----- Resolver Controller Potential Deadlock Kicking Off ResolutionRequests ----
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton resolver controller is experiencing delays getting resolutionrequests in tenant-1 started and should alert. Also make sure the lack
# of issues in tenant-2 does not affect the value of the query
- series: 'pending_resolutionrequest_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '1+1x780'
- series: 'pending_resolutionrequest_count{namespace="tenant-2", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 85m
alertname: ResolverControllerDeadlock
exp_alerts:
- exp_labels:
severity: critical
slo: "true"
source_cluster: cluster01
exp_annotations:
summary: >-
Tekton resolver controller appears to have stopped processing active resolutionrequests which have not been started yet.
description: >-
Tekton resolver controller on cluster cluster01 has appeared deadlocked on 2 resolutionrequests.
alert_team_handle: <!subteam^S04PYECHCCU>
team: pipelines
runbook_url: https://gitlab.cee.redhat.com/konflux/docs/sop/-/blob/main/pipeline-service/sre/tekton-pipeline-related-deadlocks.md
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton resolver controller is experiencing some delays getting resolutionrequests kicked off but not fast enough so it should not alert
- series: 'pending_resolutionrequest_count{namespace="tenant-1", source_cluster="cluster01"}'
values: '1x780'
alert_rule_test:
- eval_time: 10m
alertname: ResolverControllerDeadlock
# ----- Chains Controller Potential Deadlock ----
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton chains controller is experiencing delays processing pipelineruns in tenant-1 started and should alert. Also make sure the lack
# of issues in another app does not affect the value of the query
- series: 'watcher_workqueue_depth{container="tekton-chains-controller", app="tekton-chains-controller", source_cluster="cluster01"}'
values: '300+300x780'
- series: 'watcher_workqueue_depth{container="tekton-pipelines-controller", app="tekton-pipelines-controller", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 85m
alertname: ChainsControllerDeadlock
exp_alerts:
- exp_labels:
severity: critical
slo: "true"
source_cluster: cluster01
exp_annotations:
summary: >-
Tekton chains controller appears to have stopped processing active pipelineruns.
description: >-
Tekton chains controller on cluster cluster01 has appeared deadlocked on 600 pipelinerun events.
alert_team_handle: <!subteam^S04PYECHCCU>
team: pipelines
runbook_url: https://gitlab.cee.redhat.com/konflux/docs/sop/-/blob/main/pipeline-service/sre/tekton-pipeline-related-deadlocks.md
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton chains controller is experiencing some delays processing pipelineruns but not fast enough so it should not alert
- series: 'watcher_workqueue_depth{container="tekton-chains-controller", app="tekton-chains-controller", source_cluster="cluster01"}'
values: '1x780'
alert_rule_test:
- eval_time: 10m
alertname: ChainsControllerDeadlock
# ----- Results Potential Deadlock ----
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton results appears deadlocked
- series: 'tekton_pipelines_controller_pipelinerun_count{source_cluster="cluster01"}'
values: '1+1x780'
- series: 'grpc_server_handled_total{job="tekton-results-api", grpc_service="tekton.results.v1alpha2.CreateResult", source_cluster="cluster01"}'
values: '0x780'
- series: 'grpc_server_handled_total{job="foo", grpc_service="foo", source_cluster="cluster01"}'
values: '1+1x780'
alert_rule_test:
- eval_time: 85m
alertname: ResultsDeadlock
exp_alerts:
- exp_labels:
severity: critical
slo: "true"
source_cluster: cluster01
exp_annotations:
summary: >-
Tekton results appears to have stopped processing active pipelineruns.
description: >-
Tekton results on cluster cluster01 appears deadlocked on pipelinerun events.
alert_team_handle: <!subteam^S04PYECHCCU>
team: pipelines
runbook_url: https://gitlab.cee.redhat.com/konflux/docs/sop/-/blob/main/pipeline-service/sre/tekton-pipeline-related-deadlocks.md
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton chains controller is experiencing some delays processing pipelineruns but not fast enough so it should not alert
- series: 'tekton_pipelines_controller_pipelinerun_count{source_cluster="cluster01"}'
values: '0x780'
- series: 'grpc_server_handled_total{job="tekton-results-api", grpc_service="tekton.results.v1alpha2.CreateResult", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 10m
alertname: ResultsDeadlock
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton results not deadlocked
- series: 'tekton_pipelines_controller_pipelinerun_count{source_cluster="cluster01"}'
values: '1+1x780'
- series: 'grpc_server_handled_total{job="tekton-results-api", grpc_service="tekton.results.v1alpha2.CreateResult", source_cluster="cluster01"}'
values: '1+1x780'
alert_rule_test:
- eval_time: 85m
alertname: ResultsDeadlock
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
# tekton results not deadlocked
- series: 'tekton_pipelines_controller_pipelinerun_count{source_cluster="cluster01"}'
values: '1+1x780'
- series: 'grpc_server_handled_total{job="foo", grpc_service="foo", source_cluster="cluster01"}'
values: '0x780'
alert_rule_test:
- eval_time: 85m
alertname: ResultsDeadlock
# ----- PAC Controller Potential Deadlock ----
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
- series: 'pac_watcher_work_queue_depth{source_cluster="cluster01"}'
values: '300+300x780'
- series: 'pac_watcher_work_queue_depth{source_cluster="cluster02"}'
values: '0x780'
alert_rule_test:
- eval_time: 85m
alertname: PACControllerDeadlock
exp_alerts:
- exp_labels:
severity: critical
slo: "true"
source_cluster: cluster01
exp_annotations:
summary: >-
Tekton PAC controller appears to have stopped processing active pipelineruns.
description: >-
Tekton PAC controller on cluster cluster01 has appeared deadlocked on 600 pipelinerun events.
alert_team_handle: <!subteam^S04PYECHCCU>
team: pipelines
runbook_url: https://gitlab.cee.redhat.com/konflux/docs/sop/-/blob/main/pipeline-service/sre/tekton-pipeline-related-deadlocks.md
- interval: 1m
input_series:
# see https://prometheus.io/docs/prometheus/latest/configuration/unit_testing_rules/ for explanations of the expanding notation used for the values
- series: 'pac_watcher_work_queue_depth{source_cluster="cluster02"}'
values: '1x780'
alert_rule_test:
- eval_time: 10m
alertname: ChainsControllerDeadlock