forked from escrevebastante/myrha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyrha-linux.sh
More file actions
3462 lines (3191 loc) · 203 KB
/
myrha-linux.sh
File metadata and controls
3462 lines (3191 loc) · 203 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
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
# Check if running in bash
if [ -z "$BASH_VERSION" ]; then
echo "ERROR: This script MUST be run with bash. Please run it as: bash $0"
exit 1
fi
# Declare variables
DATE=$(date +"%d-%m-%Y-%H-%M-%S")
GREP="grep --color=auto"
LOGPATH=myrha
HTML_REPORT="$LOGPATH/report_$DATE.html"
FULL_CWD=$(pwd)
mkdir $LOGPATH 2>/dev/null
rm -f "$LOGPATH"/* 2>/dev/null
for cmd in rg nvim subl yq bc; do
if ! command -v "$cmd" &>/dev/null; then
echo "Installing $cmd..."
sudo apt-get install "$cmd" -y 2>/dev/null || sudo dnf install "$cmd" -y 2>/dev/null
fi
done
# --- HTML Initialization ---
cat <<'EOF' >"$HTML_REPORT"
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mirantis Audit Report</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet" />
<style>
:root {
--primary: #24292e; /* Modern Charcoal */
--accent: #3498db;
--bg: #f4f7f6;
--text: #333;
--sidebar-width: 300px;
--sidebar-link: #ffffff;
--sidebar-hover: #3498db;
--danger: #e74c3c;
}
body { font-family: 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); margin: 0; display: flex; min-height: 100vh; transition: all 0.3s; }
/* Sidebar Styling */
.sidebar {
width: var(--sidebar-width); height: 100vh; background: var(--primary);
color: white; position: sticky; top: 0; overflow-y: auto; padding: 20px;
box-sizing: border-box; flex-shrink: 0; border-right: 1px solid rgba(0,0,0,0.1);
transition: margin-left 0.3s;
}
body.sidebar-hidden .sidebar { margin-left: calc(var(--sidebar-width) * -1); }
.search-box {
width: 100%; padding: 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1);
margin-bottom: 20px; background: rgba(255,255,255,0.05); color: white;
font-size: 0.85rem; outline: none; transition: 0.2s;
}
.search-box:focus { background: rgba(255,255,255,0.15); border-color: var(--accent); }
.sidebar h3 { border-bottom: 2px solid var(--accent); padding-bottom: 10px; font-size: 1.1rem; margin-top: 0; color: white; }
.sidebar ul { list-style: none; padding: 0; }
.sidebar a {
color: var(--sidebar-link); text-decoration: none; font-size: 0.85rem;
display: block; padding: 8px 12px; border-radius: 4px; transition: 0.2s; margin-bottom: 2px;
}
.sidebar a:hover { background: rgba(255, 255, 255, 0.1); color: var(--sidebar-hover); padding-left: 15px; }
.sidebar li.hidden { display: none; }
.sidebar a.active { background: var(--accent); color: white; font-weight: bold; }
.main-content { flex: 1; padding: 40px; box-sizing: border-box; overflow-x: hidden; transition: width 0.3s; position: relative; }
.placeholder-msg {
text-align: center; margin-top: 100px; color: #666; font-size: 1.2rem;
padding: 40px; border: 2px dashed #ccc; border-radius: 12px;
}
.header { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 30px; border-left: 8px solid var(--accent); position: relative; }
.toggle-sidebar-btn {
position: fixed; left: 275px; top: 20px;
background: var(--accent); color: white; border: none;
width: 35px; height: 35px; border-radius: 8px; cursor: pointer;
box-shadow: 0 2px 10px rgba(0,0,0,0.3); z-index: 1100;
font-weight: bold; transition: all 0.3s;
display: flex; align-items: center; justify-content: center;
}
body.sidebar-hidden .toggle-sidebar-btn { left: 15px; transform: rotate(180deg); }
/* Card Styling */
.card {
display: none; /* Hidden by default */
background: white;
border-radius: 12px;
padding: 25px;
margin-bottom: 35px;
box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
min-height: 200px;
border-left: 5px solid transparent;
}
.card.visible { display: block; }
/* Alert Card Highlight - Targets the summary card specifically */
.card[id*="CERTIFICATE-ALERTS"] { border-left: 8px solid var(--danger); background: #fffcfc; }
.card[id*="CERTIFICATE-ALERTS"] h2 { color: var(--danger); }
h2 { color: var(--primary); margin: 0 0 15px 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.card-header-actions { display: flex; align-items: center; gap: 8px; }
.btn-tool {
font-size: 0.7rem; background: #eee; color: #666;
padding: 4px 10px; border-radius: 4px; border: 1px solid #ddd;
cursor: pointer; transition: 0.2s; font-weight: bold; user-select: none;
text-decoration: none; display: inline-block;
}
.btn-tool:hover { background: #e0e0e0; border-color: #ccc; color: #333; }
.btn-tool.active { background: var(--accent); color: white; border-color: var(--accent); }
.btn-copy.success { background: #27ae60 !important; color: white !important; border-color: #2ecc71 !important; }
.btn-close:hover { background: #e74c3c !important; color: white !important; border-color: #c0392b !important; }
.card-search {
font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; border: 1px solid #ddd;
outline: none; width: 120px; transition: 0.3s; margin-right: 5px;
}
.card-search:focus { border-color: var(--accent); width: 180px; box-shadow: 0 0 5px rgba(52, 152, 219, 0.3); }
mark { background: #ffeb3b; color: black; border-radius: 2px; padding: 0 2px; }
mark.current { background: #ff9800; font-weight: bold; outline: 2px solid #e65100; }
.search-nav-container { display: inline-flex; align-items: center; }
.search-count { font-size: 0.7rem; color: #666; margin: 0 5px; min-width: 35px; text-align: center; }
.back-to-top {
font-size: 0.7rem; background: var(--accent); color: white !important;
padding: 5px 10px; border-radius: 4px; text-decoration: none !important; font-weight: bold;
}
/* Full Screen Card Logic */
.card.fullscreen {
position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
z-index: 3000; margin: 0; border-radius: 0; overflow-y: auto;
box-sizing: border-box; background: white;
}
.card.fullscreen .back-to-top { display: none; }
body.has-fullscreen { overflow: hidden; }
.card.fullscreen pre { max-height: calc(100vh - 120px); }
pre[class*="language-"] { max-height: 500px; border-radius: 8px; }
pre[class*="language-"].raw-code { white-space: pre !important; word-break: normal !important; overflow-x: auto !important; }
pre[class*="language-"].wrapped-code { white-space: pre-wrap !important; word-break: break-all !important; overflow-x: hidden !important; }
pre[class*="language-"] code { white-space: inherit !important; word-break: inherit !important; }
.card { scroll-margin-top: 20px; }
/* Sidebar Filter Tabs */
.filter-tabs { display: flex; gap: 5px; margin-bottom: 15px; }
.filter-btn {
flex: 1; padding: 6px; font-size: 0.75rem; background: rgba(255,255,255,0.1);
color: white; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
cursor: pointer; transition: 0.2s;
}
.filter-btn:hover { background: rgba(255,255,255,0.2); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); }
.analyzed-files-wrapper {
margin-bottom: 15px; padding: 10px; background: #f8f9fa; border-radius: 6px; border: 1px solid #e9ecef; font-size: 0.85rem;
position: relative;
}
.analyzed-files-container {
max-height: 1.5rem; overflow: hidden; transition: max-height 0.3s ease;
padding-right: 80px; /* Space for the more button */
}
.analyzed-files-container.expanded { max-height: 1000px; padding-right: 0; }
.more-files-btn {
position: absolute; right: 10px; top: 8px;
background: #eee; border: 1px solid #ccc; border-radius: 4px;
padding: 2px 8px; font-size: 0.7rem; cursor: pointer; color: #666;
font-weight: bold; transition: 0.2s;
}
.more-files-btn:hover { background: #ddd; color: #333; }
</style>
<script>
function toggleSidebar() {
document.body.classList.toggle('sidebar-hidden');
}
function toggleAnalyzedFiles(btn) {
const container = btn.previousElementSibling;
const isExpanded = container.classList.toggle('expanded');
btn.innerText = isExpanded ? 'less' : 'more...';
if (isExpanded) {
btn.style.position = 'static';
btn.style.display = 'block';
btn.style.marginTop = '10px';
btn.style.width = 'fit-content';
} else {
btn.style.position = 'absolute';
btn.style.display = 'inline';
btn.style.marginTop = '0';
}
}
let currentFilter = 'all';
function filterType(type) {
currentFilter = type;
document.querySelectorAll('.filter-btn').forEach(btn => {
const match = btn.getAttribute('onclick').match(/'([^']+)'/);
if (match) {
btn.classList.toggle('active', match[1] === type);
}
});
applyFilters();
}
function filterSidebar() {
applyFilters();
}
function applyFilters() {
const query = document.getElementById('sidebarSearch').value.toLowerCase();
const items = document.querySelectorAll('#sidebarList li');
items.forEach(item => {
const text = item.innerText.toLowerCase();
const category = item.dataset.category;
const matchesSearch = text.includes(query);
const matchesFilter = currentFilter === 'all' || category === currentFilter || category === 'cluster' || category === 'all';
item.classList.toggle('hidden', !matchesSearch || !matchesFilter);
});
}
function toggleCard(link, anchor) {
const card = document.getElementById(anchor);
const isActive = link.classList.toggle('active');
card.classList.toggle('visible', isActive);
// Lazy load highlighting
if (isActive && !card.dataset.highlighted) {
const codeBlock = card.querySelector('pre code');
if (codeBlock) {
Prism.highlightElement(codeBlock);
card.dataset.highlighted = "true";
}
}
const placeholder = document.getElementById('placeholder');
const visibleCards = document.querySelectorAll('.card.visible').length;
placeholder.style.display = visibleCards > 0 ? 'none' : 'block';
}
function clearAllCards() {
document.querySelectorAll('.sidebar li a.active').forEach(link => link.classList.remove('active'));
document.querySelectorAll('.card.visible').forEach(card => card.classList.remove('visible'));
document.getElementById('placeholder').style.display = 'block';
}
function closeCard(anchor) {
const card = document.getElementById(anchor);
card.classList.remove('visible');
document.querySelectorAll('.sidebar li a').forEach(link => {
if (link.getAttribute('onclick').includes(`'${anchor}'`)) {
link.classList.remove('active');
}
});
const placeholder = document.getElementById('placeholder');
const visibleCards = document.querySelectorAll('.card.visible').length;
placeholder.style.display = visibleCards > 0 ? 'none' : 'block';
}
function toggleBlockWrap(btn, anchor) {
const card = document.getElementById(anchor);
const codeBlock = card.querySelector('pre');
codeBlock.classList.toggle('wrapped-code');
codeBlock.classList.toggle('raw-code');
btn.classList.toggle('active');
btn.innerText = codeBlock.classList.contains('wrapped-code') ? 'Wrap: ON' : 'Wrap: OFF';
}
async function copyToClipboard(btn, anchor) {
const card = document.getElementById(anchor);
const code = card.querySelector('code').innerText;
try {
await navigator.clipboard.writeText(code);
const originalText = btn.innerText;
btn.innerText = 'Copied!';
btn.classList.add('success');
setTimeout(() => {
btn.innerText = originalText;
btn.classList.remove('success');
}, 2000);
} catch (err) { console.error('Copy failed:', err); }
}
function toggleFullScreen(btn, anchor) {
const card = document.getElementById(anchor);
const isFS = card.classList.toggle('fullscreen');
document.body.classList.toggle('has-fullscreen', isFS);
btn.innerText = isFS ? 'Exit Full Screen' : 'Full Screen';
btn.classList.toggle('active', isFS);
}
function scrollToLimit(anchor, limit) {
const card = document.getElementById(anchor);
const pre = card.querySelector('pre');
if (pre) {
pre.scrollTo({
top: limit === 'top' ? 0 : pre.scrollHeight,
behavior: 'smooth'
});
}
}
const searchStates = {};
const searchDebounce = {};
function performSearch(anchor, query) {
clearTimeout(searchDebounce[anchor]);
searchDebounce[anchor] = setTimeout(() => executeSearch(anchor, query), 300);
}
function executeSearch(anchor, query) {
const card = document.getElementById(anchor);
const code = card.querySelector('code');
const counter = card.querySelector('.search-count');
const instance = new Mark(code);
searchStates[anchor] = { index: -1, marks: [] };
instance.unmark({
done: function() {
if (query.length >= 2) {
instance.mark(query, {
"accuracy": "partially",
"separateWordSearch": false,
"acrossElements": true,
done: function() {
const found = card.querySelectorAll('mark');
searchStates[anchor].marks = found;
if (found.length > 0) {
searchStates[anchor].index = 0;
navigateSearch(anchor, 0);
} else {
counter.innerText = "0/0";
}
}
});
} else {
counter.innerText = "0/0";
}
}
});
}
function navigateSearch(anchor, direction) {
const state = searchStates[anchor];
if (!state || state.marks.length === 0) return;
state.marks.forEach(m => m.classList.remove('current'));
if (direction === 'next') {
state.index = (state.index + 1) % state.marks.length;
} else if (direction === 'prev') {
state.index = (state.index - 1 + state.marks.length) % state.marks.length;
} else {
state.index = direction; // Absolute index
}
const currentMark = state.marks[state.index];
currentMark.classList.add('current');
currentMark.scrollIntoView({ behavior: 'smooth', block: 'center' });
const card = document.getElementById(anchor);
card.querySelector('.search-count').innerText = `${state.index + 1}/${state.marks.length}`;
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/mark.min.js"></script>
</head>
<body>
<nav class="sidebar">
<h3>AUDIT SECTIONS</h3>
<div class="filter-tabs">
<button class="filter-btn active" onclick="filterType('all')">Both</button>
<button class="filter-btn" onclick="filterType('mcc')">MCC</button>
<button class="filter-btn" onclick="filterType('mos')">MOS</button>
<button class="filter-btn" onclick="clearAllCards()" style="background: rgba(255, 69, 58, 0.2); border-color: rgba(255, 69, 58, 0.4);">Clear All</button>
</div>
<input type="text" class="search-box" id="sidebarSearch" placeholder="Filter sections..." onkeyup="filterSidebar()">
<ul id="sidebarList">
EOF
# --- KNOWN ISSUES AUTO-DIAGNOSTIC ---
check_known_issues() {
local MOS_VER_RAW="$1"
local MCC_VER_RAW="$2"
local OUT="$LOGPATH/cluster_known_issues.yaml"
# Extract versions
local MOS_VER="0.0.0"
if [[ "$MOS_VER_RAW" =~ ([0-9]+\.[0-9]+\.[0-9]+)\+([0-9]+(\.[0-9]+)*) ]]; then
MOS_VER="${BASH_REMATCH[2]}"
elif [[ "$MOS_VER_RAW" =~ ([0-9]+\.[0-9]+\.[0-9]+) ]]; then
MOS_VER="${BASH_REMATCH[1]}"
fi
local MCC_VER="$MCC_VER_RAW"
[[ -z "$MCC_VER" || "$MCC_VER" == "0.0.0" ]] && if [[ -f "$LOGPATH/mcc_upgrade_audit.yaml" ]]; then
MCC_VER=$(grep "KaaS Release:" "$LOGPATH/mcc_upgrade_audit.yaml" | awk '{print $NF}' | sed 's/kaas-//' | tr '-' '.')
fi
[[ -z "$MCC_VER" ]] && MCC_VER="0.0.0"
echo "Running Version-Specific Known Issues Diagnostic..."
echo "MOS Version: $MOS_VER, MCC Version: $MCC_VER"
echo "################# [CLUSTER KNOWN ISSUES & BUGS AUTO-DIAGNOSTIC] #################" >"$OUT"
echo "MOS Version: $MOS_VER" >>"$OUT"
echo "MCC Version: $MCC_VER" >>"$OUT"
echo "----------------------------------------------------" >>"$OUT"
# Define issues as: ID | Product (MOS/MCC/ALL) | MinVer | MaxVer | Title | Pattern | SearchPath
ISSUES=(
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-49078 | MOS | 0.0.0 | 25.1 | [49078] Migration to containerd is stuck due to orphaned Docker containers | Orphaned Docker containers found after migration. Unable to proceed, please | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-47695 | MOS | 0.0.0 | 25.1.1 | [47695] Cinder database sync job fails during upgrade from Antelope to Caracal | <TIMESTAMP> 1 ERROR cinder pymysql.err.DataError: (1265, "Data truncated for column '\''use_quota'\'' at row 24") | $MOS_DIR/objects'
'KI-13755 | MOS | 24.3.5 | 24.3.5 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.3.5 | 24.3.5 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-49078 | MOS | 0.0.0 | 25.1 | [49078] Migration to containerd is stuck due to orphaned Docker containers | Orphaned Docker containers found after migration. Unable to proceed, please | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-13755 | MOS | 24.3.7 | 24.3.7 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.3.7 | 24.3.7 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-47695 | MOS | 0.0.0 | 25.1.1 | [47695] Cinder database sync job fails during upgrade from Antelope to Caracal | <TIMESTAMP> 1 ERROR cinder pymysql.err.DataError: (1265, "Data truncated for column '\''use_quota'\'' at row 24") | $MOS_DIR/objects'
'KI-13755 | MOS | 24.3.2 | 24.3.2 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.3.2 | 24.3.2 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-51524 | MOS | 0.0.0 | 24.3.5 | [51524] `sf-notifier` creates big amount of relogins to Salesforce | mirantis.azurecr.io/stacklight/sf-notifier:v0.4-20250113023013 | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-49078 | MOS | 0.0.0 | 25.1 | [49078] Migration to containerd is stuck due to orphaned Docker containers | Orphaned Docker containers found after migration. Unable to proceed, please | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-49078 | MOS | 0.0.0 | 25.1 | [49078] Migration to containerd is stuck due to orphaned Docker containers | Orphaned Docker containers found after migration. Unable to proceed, please | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-47695 | MOS | 0.0.0 | 25.1.1 | [47695] Cinder database sync job fails during upgrade from Antelope to Caracal | <TIMESTAMP> 1 ERROR cinder pymysql.err.DataError: (1265, "Data truncated for column '\''use_quota'\'' at row 24") | $MOS_DIR/objects'
'KI-13755 | MOS | 24.3.3 | 24.3.3 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.3.3 | 24.3.3 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-51524 | MOS | 0.0.0 | 24.3.5 | [51524] `sf-notifier` creates big amount of relogins to Salesforce | mirantis.azurecr.io/stacklight/sf-notifier:v0.4-20250113023013 | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-49078 | MOS | 0.0.0 | 25.1 | [49078] Migration to containerd is stuck due to orphaned Docker containers | Orphaned Docker containers found after migration. Unable to proceed, please | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-13755 | MOS | 24.3.6 | 24.3.6 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.3.6 | 24.3.6 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-47603 | MOS | 0.0.0 | 24.3.1 | [47603] Masakari fails during the OpenStack upgrade to Caracal | masakari_db_sync: docker-dev-kaas-local.docker.mirantis.net/openstack/masakari:caracal-jammy-20241028141054 | $MOS_DIR/objects'
'KI-47695 | MOS | 0.0.0 | 25.1.1 | [47695] Cinder database sync job fails during upgrade from Antelope to Caracal | <TIMESTAMP> 1 ERROR cinder pymysql.err.DataError: (1265, "Data truncated for column '\''use_quota'\'' at row 24") | $MOS_DIR/objects'
'KI-13755 | MOS | 24.3 | 24.3 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.3 | 24.3 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-47602 | MOS | 0.0.0 | 24.3.1 | [47602] Failed `designate-zone-setup` job blocks cluster update | Client Error for url: http://designate-api.openstack.svc.cluster.local:9001/v2/zones, | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-49078 | MOS | 0.0.0 | 25.1 | [49078] Migration to containerd is stuck due to orphaned Docker containers | Orphaned Docker containers found after migration. Unable to proceed, please | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-47695 | MOS | 0.0.0 | 25.1.1 | [47695] Cinder database sync job fails during upgrade from Antelope to Caracal | <TIMESTAMP> 1 ERROR cinder pymysql.err.DataError: (1265, "Data truncated for column '\''use_quota'\'' at row 24") | $MOS_DIR/objects'
'KI-13755 | MOS | 24.3.4 | 24.3.4 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.3.4 | 24.3.4 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-51524 | MOS | 0.0.0 | 24.3.5 | [51524] `sf-notifier` creates big amount of relogins to Salesforce | mirantis.azurecr.io/stacklight/sf-notifier:v0.4-20250113023013 | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-47695 | MOS | 0.0.0 | 25.1.1 | [47695] Cinder database sync job fails during upgrade from Antelope to Caracal | <TIMESTAMP> 1 ERROR cinder pymysql.err.DataError: (1265, "Data truncated for column '\''use_quota'\'' at row 24") | $MOS_DIR/objects'
'KI-13755 | MOS | 24.3.1 | 24.3.1 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.3.1 | 24.3.1 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-51524 | MOS | 0.0.0 | 24.3.5 | [51524] `sf-notifier` creates big amount of relogins to Salesforce | mirantis.azurecr.io/stacklight/sf-notifier:v0.4-20250113023013 | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-49078 | MOS | 0.0.0 | 25.1 | [49078] Migration to containerd is stuck due to orphaned Docker containers | Orphaned Docker containers found after migration. Unable to proceed, please | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-45879 | MOS | 0.0.0 | 24.2.1 | [45879] [Antelope] Incorrect packet handling between instance and its gateway | neutron_openvswitch_agent: mirantis.azurecr.io/openstack/neutron:antelope-jammy-20240816113600 | $MOS_DIR/objects'
'KI-13755 | MOS | 24.1.3 | 24.1.3 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-39768 | MOS | 0.0.0 | 24.2 | [39768] OpenStack Controller exporter fails to start | OSCTL_EXPORTER_MAX_POLL_TIMEOUT: 900 | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-45879 | MOS | 0.0.0 | 24.2.1 | [45879] [Antelope] Incorrect packet handling between instance and its gateway | neutron_openvswitch_agent: mirantis.azurecr.io/openstack/neutron:antelope-jammy-20240816113600 | $MOS_DIR/objects'
'KI-13755 | MOS | 24.1.1 | 24.1.1 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-45879 | MOS | 0.0.0 | 24.2.1 | [45879] [Antelope] Incorrect packet handling between instance and its gateway | neutron_openvswitch_agent: mirantis.azurecr.io/openstack/neutron:antelope-jammy-20240816113600 | $MOS_DIR/objects'
'KI-13755 | MOS | 24.1.5 | 24.1.5 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.1.5 | 24.1.5 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-42903 | MOS | 0.0.0 | 24.2 | [42903] Inconsistent handling of missing pools by ceph-controller | ceph auth get client.nova -o /tmp/nova.key | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-45879 | MOS | 0.0.0 | 24.2.1 | [45879] [Antelope] Incorrect packet handling between instance and its gateway | neutron_openvswitch_agent: mirantis.azurecr.io/openstack/neutron:antelope-jammy-20240816113600 | $MOS_DIR/objects'
'KI-13755 | MOS | 24.1.6 | 24.1.6 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.1.6 | 24.1.6 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-42903 | MOS | 0.0.0 | 24.2 | [42903] Inconsistent handling of missing pools by ceph-controller | ceph auth get client.nova -o /tmp/nova.key | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-45879 | MOS | 0.0.0 | 24.2.1 | [45879] [Antelope] Incorrect packet handling between instance and its gateway | neutron_openvswitch_agent: mirantis.azurecr.io/openstack/neutron:antelope-jammy-20240816113600 | $MOS_DIR/objects'
'KI-13755 | MOS | 24.1.4 | 24.1.4 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-39768 | MOS | 0.0.0 | 24.2 | [39768] OpenStack Controller exporter fails to start | OSCTL_EXPORTER_MAX_POLL_TIMEOUT: 900 | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-45879 | MOS | 0.0.0 | 24.2.1 | [45879] [Antelope] Incorrect packet handling between instance and its gateway | neutron_openvswitch_agent: mirantis.azurecr.io/openstack/neutron:antelope-jammy-20240816113600 | $MOS_DIR/objects'
'KI-13755 | MOS | 24.1 | 24.1 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-45879 | MOS | 0.0.0 | 24.2.1 | [45879] [Antelope] Incorrect packet handling between instance and its gateway | neutron_openvswitch_agent: mirantis.azurecr.io/openstack/neutron:antelope-jammy-20240816113600 | $MOS_DIR/objects'
'KI-13755 | MOS | 24.1.7 | 24.1.7 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.1.7 | 24.1.7 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-42903 | MOS | 0.0.0 | 24.2 | [42903] Inconsistent handling of missing pools by ceph-controller | ceph auth get client.nova -o /tmp/nova.key | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-45879 | MOS | 0.0.0 | 24.2.1 | [45879] [Antelope] Incorrect packet handling between instance and its gateway | neutron_openvswitch_agent: mirantis.azurecr.io/openstack/neutron:antelope-jammy-20240816113600 | $MOS_DIR/objects'
'KI-13755 | MOS | 24.1.2 | 24.1.2 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-13755 | MOS | 25.1.1 | 25.1.1 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 25.1.1 | 25.1.1 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-47396 | MOS | 25.1.1 | 25.1.1 | [47396] Exceeding the number of Cassandra tombstone | ALTER TABLE config_db_uuid.obj_uuid_table WITH gc_grace_seconds = 10; | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-47695 | MOS | 0.0.0 | 25.1.1 | [47695] Cinder database sync job fails during upgrade from Antelope to Caracal | <TIMESTAMP> 1 ERROR cinder pymysql.err.DataError: (1265, "Data truncated for column '\''use_quota'\'' at row 24") | $MOS_DIR/objects'
'KI-13755 | MOS | 25.1 | 25.1 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 25.1 | 25.1 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-47396 | MOS | 25.1 | 25.1 | [47396] Exceeding the number of Cassandra tombstone | ALTER TABLE config_db_uuid.obj_uuid_table WITH gc_grace_seconds = 10; | $MOS_DIR/objects'
'KI-51524 | MOS | 0.0.0 | 24.3.5 | [51524] `sf-notifier` creates big amount of relogins to Salesforce | mirantis.azurecr.io/stacklight/sf-notifier:v0.4-20250113023013 | $MOS_DIR/objects'
'KI-53802,52253 | MOS | 0.0.0 | 25.2 | [53802, 52253] `telegrafDsSmart` causes OOM while scanning remote volumes | telegrafDsSmart: | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-13755 | MOS | 24.2.2 | 24.2.2 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.2.2 | 24.2.2 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-46220 | MOS | 0.0.0 | 24.2.3 | [46220] ClusterMaintenanceRequest stuck with Tungsten Fabric API v2 | creationTimestamp: "<TIMESTAMP>" | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-13755 | MOS | 24.2.5 | 24.2.5 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.2.5 | 24.2.5 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-47602 | MOS | 0.0.0 | 24.3.1 | [47602] Failed `designate-zone-setup` job blocks cluster update | Client Error for url: http://designate-api.openstack.svc.cluster.local:9001/v2/zones, | $MOS_DIR/objects'
'KI-51524 | MOS | 0.0.0 | 24.3.5 | [51524] `sf-notifier` creates big amount of relogins to Salesforce | mirantis.azurecr.io/stacklight/sf-notifier:v0.4-20250113023013 | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-45879 | MOS | 0.0.0 | 24.2.1 | [45879] [Antelope] Incorrect packet handling between instance and its gateway | neutron_openvswitch_agent: mirantis.azurecr.io/openstack/neutron:antelope-jammy-20240816113600 | $MOS_DIR/objects'
'KI-13755 | MOS | 24.2 | 24.2 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-40900 | MOS | 0.0.0 | 24.2.1 | [40900] Cassandra DB infinite table creation/changing state in Tungsten Fabric | Type Reason Age From Message | $MOS_DIR/objects'
'KI-42896 | MOS | 24.2 | 24.2 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-13755 | MOS | 24.2.1 | 24.2.1 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.2.1 | 24.2.1 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-46220 | MOS | 0.0.0 | 24.2.3 | [46220] ClusterMaintenanceRequest stuck with Tungsten Fabric API v2 | creationTimestamp: "<TIMESTAMP>" | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-13755 | MOS | 24.2.4 | 24.2.4 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.2.4 | 24.2.4 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-47602 | MOS | 0.0.0 | 24.3.1 | [47602] Failed `designate-zone-setup` job blocks cluster update | Client Error for url: http://designate-api.openstack.svc.cluster.local:9001/v2/zones, | $MOS_DIR/objects'
'KI-51524 | MOS | 0.0.0 | 24.3.5 | [51524] `sf-notifier` creates big amount of relogins to Salesforce | mirantis.azurecr.io/stacklight/sf-notifier:v0.4-20250113023013 | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-13755 | MOS | 24.2.3 | 24.2.3 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 24.2.3 | 24.2.3 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-46671 | MOS | 0.0.0 | 25.1.1 | [46671] Cluster update fails with the `tf-config` pods crashed | tf-config-<ID> [0-9]/[0-9] CrashLoopBackOff [0-9]+ (<ID> ago) <ID> | $MOS_DIR/objects'
'KI-47602 | MOS | 0.0.0 | 24.3.1 | [47602] Failed `designate-zone-setup` job blocks cluster update | Client Error for url: http://designate-api.openstack.svc.cluster.local:9001/v2/zones, | $MOS_DIR/objects'
'KI-51524 | MOS | 0.0.0 | 24.3.5 | [51524] `sf-notifier` creates big amount of relogins to Salesforce | mirantis.azurecr.io/stacklight/sf-notifier:v0.4-20250113023013 | $MOS_DIR/objects'
'BUG-8013 | MCC | 2.0.0 | 2.10.0 | [8013] Managed cluster deployment requiring PVs may fail | -o jsonpath='\''{.spec.volumes[?(@.persistentVolumeClaim)].persistentVolumeClaim.claimName}'\'' | $MCC_DIR/objects'
'BUG-2757 | MCC | 2.0.0 | 2.4.0 | [2757] IAM fails to start during management cluster deployment | -o jsonpath='\''{.data.MYSQL_DBADMIN_PASSWORD}'\'' | base64 -d ; echo | $MCC_DIR/objects'
'BUG-15698 | MCC | 2.8.0 | 2.11.0 | [15698] VIP is assigned to each manager node instead of a single node | firewall-cmd --add-rich-rule='\''rule protocol value="vrrp" accept'\'' --permanent | $MCC_DIR/objects'
'BUG-14080 | MCC | 0.0.0 | 0.0.0 | [14080] Node leaves the cluster after IP address change | Error: rpc error: code = Unknown desc = The swarm does not have a leader. | $MCC_DIR/objects'
'BUG-14458 | MCC | 2.7.0 | 2.9.0 | [14458] Failure to create a container for pod: cannot allocate memory | State: Waiting | $MCC_DIR/objects'
'BUG-10424 | MCC | 0.0.0 | 0.0.0 | [10424] Regional cluster cleanup fails by timeout | ./bin/kind delete cluster --name clusterapi | $MCC_DIR/objects'
'BUG-10050 | MCC | 2.3.0 | 2.11.0 | [10050] Ceph OSD pod is in the CrashLoopBackOff state after disk replacement | ceph auth del osd.<ID> | $MCC_DIR/objects'
'BUG-13402 | MCC | 2.6.0 | 2.10.0 | [13402] Cluster fails with error: no space left on device | "default-ulimits": { | $MCC_DIR/objects'
'BUG-13845 | MCC | 2.7.0 | 2.11.0 | [13845] Cluster update fails during the LCM Agent upgrade with x509 error | lcmAgentUpgradeStatus:.*x509: certificate signed by unknown authority | $MCC_DIR/objects'
'BUG-6066 | MCC | 2.4.0 | 0.0.0 | [6066] Helm releases get stuck in FAILED or UNKNOWN state | finishedAt: "<TIMESTAMP>" | $MCC_DIR/objects'
'BUG-14125 | MCC | 2.8.0 | 2.10.0 | [14125] Inaccurate nodes readiness status on a managed cluster | ssh -i <sshPrivateKey> root@<controlPlaneNodeIP> | $MCC_DIR/objects'
'BUG-13292 | MCC | 2.7.0 | 0.0.0 | [13292] Local volume provisioner pod stuck in Terminating status after upgrade | kuebctl -n default delete pod <LVPPodName> --force | $MCC_DIR/objects'
'BUG-9899 | MCC | 2.3.0 | 2.14.0 | [9899] Helm releases get stuck in PENDING_UPGRADE during cluster update | ./helm --host=localhost:44134 history openstack-operator | $MCC_DIR/objects'
'BUG-8112 | MCC | 0.0.0 | 0.0.0 | [8112] Nodes occasionally become Not Ready on long-running clusters | ctr -n com.docker.ucp snapshot rm ucp-kubelet | $MCC_DIR/objects'
'BUG-17792 | MCC | 0.0.0 | 0.0.0 | [17792] Full preflight fails with a timeout waiting for BareMetalHost | preflight check failed: preflight full check failed: | $MCC_DIR/objects'
'BUG-18962 | MCC | 0.0.0 | 0.0.0 | [18962] Machine provisioning issues during cluster deployment | NAME STATE CONSUMER BOOTMODE ONLINE ERROR REGION | $MCC_DIR/objects'
'BUG-19737 | MCC | 2.14.0 | 2.15.0 | [19737] The vSphere VM template build hangs with an empty kickstart file | Kickstart file /run/install/ks.cfg is missing | $MCC_DIR/objects'
'BUG-19468 | MCC | 2.13.0 | 2.15.0 | [19468] '\''Failed to remove finalizer from machine'\'' error during cluster deletion | Failed to remove finalizer from machine ... | $MCC_DIR/objects'
'BUG-18933 | MCC | 2.14.0 | 2.15.0 | [18933] Alerta pods fail to pass the readiness check | <TIMESTAMP>,865 DEBG '\''nginx'\'' stdout output: | $MCC_DIR/objects'
'BUG-20312 | MCC | 2.12.0 | 0.0.0 | [20312] Creation of ceph-based PVs gets stuck in *Pending* state | CSI_PROVISIONER_TOLERATIONS: \| | $MCC_DIR/objects'
'BUG-20298 | MCC | 2.14.0 | 2.15.0 | [20298] Spec validation failing during KaaSCephOperationRequest creation | spec in body should have at most 1 properties | $MCC_DIR/objects'
'BUG-20455 | MCC | 2.14.0 | 0.0.0 | [20455] Cluster upgrade fails on the LCMMachine CRD update | following error | $MCC_DIR/objects'
'BUG-4288 | MCC | 0.0.0 | 0.0.0 | [4288] Equinix and MOS managed clusters update failure | ctr -n com.docker.ucp snapshot rm ucp-kubelet | $MCC_DIR/objects'
'BUG-16379,23865 | MCC | 2.10.0 | 2.19.0 | [16379,23865] Cluster update fails with the FailedMount warning | -o jsonpath='\''{.items[?(@.spec.nodeName == "<nodeName>")].metadata.name}'\'' | $MCC_DIR/objects'
'BUG-9875 | MCC | 2.3.0 | 2.6.0 | [9875] Full preflight fails with a timeout waiting for BareMetalHost | failed to create BareMetal objects: failed to wait for objects of kinds BareMetalHost | $MCC_DIR/objects'
'BUG-10060 | MCC | 2.3.0 | 2.7.0 | [10060] Ceph OSD node removal fails | rook-ceph-mon-<ID> [0-9]/[0-9] Running [0-9]+ <ID> | $MCC_DIR/objects'
'BUG-9928 | MCC | 2.3.0 | 2.5.0 | [9928] Ceph rebalance during a managed cluster update | ceph osd set noout | $MCC_DIR/objects'
'BUG-11001 | MCC | 2.4.0 | 2.6.0 | [11001] Patroni pod fails to start | Local timeline=4 lsn=0/A000000 | $MCC_DIR/objects'
'BUG-11633 | MCC | 2.5.0 | 2.6.0 | [11633] A vSphere-based project cannot be cleaned up | - kaas.mirantis.com/credentials-secret | $MCC_DIR/objects'
'BUG-11468 | MCC | 2.5.0 | 2.6.0 | [11468] Pods using LVP PV are not mounted to LVP disk | findmnt /mnt/local-volumes/stacklight/elasticsearch-data/vol00 | $MCC_DIR/objects'
'BUG-10829 | MCC | 2.5.0 | 2.6.0 | [10829] Keycloak pods fail to start during a management cluster bootstrap | -Djboss.as.management.blocking.timeout=<RequiredValue> | $MCC_DIR/objects'
'BUG-12683 | MCC | 2.6.0 | 2.7.0 | [12683] The kaas-ipam pods restart on the vSphere region with IPAM disabled | Waiting for CRDs. [baremetalhosts.metal3.io clusters.cluster.k8s.io machines.cluster.k8s.io | $MCC_DIR/objects'
'BUG-13176 | MCC | 2.6.0 | 2.7.0 | [13176] ClusterNetwork settings may disappear from the cluster provider spec | version: 1.18.3 | $MCC_DIR/objects'
'BUG-13078 | MCC | 2.6.0 | 2.7.0 | [13078] Elasticsearch does not receive data from Fluentd | curl -XPUT -H "content-type: application/json" | $MCC_DIR/objects'
'BUG-8367 | MCC | 2.9.0 | 2.12.0 | [8367] Adding of a new manager node to a managed cluster hangs on Deploy stage | Status code was -1 and not [200]: Request failed: <urlopen error [Errno 111] Connection refused> | $MCC_DIR/objects'
'BUG-16718 | MCC | 2.10.0 | 2.12.0 | [16718] Equinix Metal provider fails to create machines with SSH keys error | Failed to create machine "kaas-mgmt-controlplane-0"... | $MCC_DIR/objects'
'BUG-16959 | MCC | 2.11.0 | 2.12.0 | [16959] Proxy-based regional cluster creation fails | ./bootstrap.sh deploy_regional | $MCC_DIR/objects'
'BUG-16146 | MCC | 0.0.0 | 0.0.0 | [16146] Stuck kubelet on the Cluster release 5.x.x series | an error on the server ("") has prevented the request from succeeding | $MCC_DIR/objects'
'BUG-16843 | MCC | 2.10.0 | 2.12.0 | [16843] Inability to override default route matchers for Salesforce notifier | Warning: Merging destination map for chart '\''stacklight'\''. Overwriting table | $MCC_DIR/objects'
'BUG-17771 | MCC | 2.10.0 | 2.13.0 | [17771] Watchdog alert missing in Salesforce route | Warning: Merging destination map for chart '\''stacklight'\''. Overwriting table | $MCC_DIR/objects'
'BUG-16873 | MCC | 2.10.0 | 2.12.0 | [16873] Bootstrap fails with '\''failed to establish connection with tiller'\'' error | clusterdeployer.go:164] Initialize Tiller in bootstrap cluster. | $MCC_DIR/objects'
'BUG-17477 | MCC | 2.11.0 | 2.12.0 | [17477] StackLight in HA mode is not deployed or cluster update is blocked | cluster release version upgrade is forbidden: | $MCC_DIR/objects'
'BUG-17412 | MCC | 2.11.0 | 0.0.0 | [17412] Cluster upgrade fails on the KaaSCephCluster CRD update | Upgrade "kaas-public-api" failed: | $MCC_DIR/objects'
'BUG-17069 | MCC | 2.11.0 | 2.12.0 | [17069] Cluster upgrade fails with the '\''Failed to configure Ceph cluster'\'' error | - message: '\''Failed to configure Ceph cluster: ceph cluster verification is failed: | $MCC_DIR/objects'
'BUG-17007 | MCC | 2.11.0 | 2.12.0 | [17007] False-positive '\''release: "squid-proxy" not found'\'' error | Helm charts not installed yet: squid-proxy | $MCC_DIR/objects'
'BUG-16964 | MCC | 2.11.0 | 2.12.0 | [16964] Management cluster upgrade gets stuck | mons are allowing insecure global_id reclaim | $MCC_DIR/objects'
'BUG-18076 | MCC | 2.11.0 | 2.13.0 | [18076] StackLight update failure | Upgrade "stacklight" failed: Job.batch "stacklight-delete-logging-pvcs-*" is invalid: spec.template: Invalid value: ... | $MCC_DIR/objects'
'BUG-16233 | MCC | 2.10.0 | 2.11.0 | [16233] Bare metal pods fail during upgrade due to Ceph not unmounting RBD | NAME READY UP-TO-DATE AVAILABLE AGE | $MCC_DIR/objects'
'BUG-15766 | MCC | 2.10.0 | 2.11.0 | [15766] Cluster upgrade failure | error when evicting pods/"patroni-12-2" -n "stacklight" (will retry after 5s): | $MCC_DIR/objects'
'BUG-18752 | MCC | 0.0.0 | 0.0.0 | [18752] Bare metal hosts in '\''provisioned registration error'\'' state after update | errorMessage: '\''Host adoption failed: Error while attempting to adopt node <UUID>: | $MCC_DIR/objects'
'BUG-18708 | MCC | 2.13.0 | 2.14.0 | [18708] '\''Pending'\'' state of machines during a cluster deployment or attachment | - lastTransitionTime: "<TIMESTAMP>" | $MCC_DIR/objects'
'BUG-17981 | MCC | 2.12.0 | 2.13.0 | [17981] Failure to redeploy a bare metal node with RAID 1 | sudo mdadm --detail --scan --verbose | $MCC_DIR/objects'
'BUG-17960 | MCC | 2.12.0 | 2.13.0 | [17960] Overflow of the Ironic storage volume | Filesystem Size Used Avail Use% Mounted on | $MCC_DIR/objects'
'BUG-17359 | MCC | 2.12.0 | 2.13.0 | [17359] Deletion of AWS-based regional cluster credential fails | ./bin/kind get kubeconfig --name clusterapi > kubeconfig-bootstrap | $MCC_DIR/objects'
'BUG-42386 | MCC | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MCC_DIR/objects'
'BUG-24005 | MCC | 2.18.0 | 0.0.0 | [24005] Deletion of a node with ironic Pod is stuck in the *Terminating* state | related bare metal host is stuck in the ``deprovisioning`` | $MCC_DIR/objects'
'BUG-50566 | MCC | 2.27.0 | 2.29.3 | [50566] Ceph upgrade is very slow during patch or major cluster update | Warning Unhealthy 57s (x16 over 3m27s) kubelet Startup probe failed: | $MCC_DIR/objects'
'BUG-26441 | MCC | 2.20.0 | 0.0.0 | [26441] Cluster update fails with the *MountDevice failed for volume* warning | -o jsonpath='\''{.items[?(@.spec.nodeName == "<nodeName>")].metadata.name}'\'' | $MCC_DIR/objects'
'BUG-31186,34132 | MCC | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MCC_DIR/objects'
'BUG-44193 | MCC | 2.26.0 | 2.29.0 | [44193] OpenSearch reaches 85% disk usage watermark affecting the cluster state | 0.8 × OpenSearch_PVC_Size_GB + Prometheus_PVC_Size_GB > 0.85 × Total_Storage_Capacity_GB | $MCC_DIR/objects'
'BUG-50637 | MCC | 2.29.0 | 0.0.0 | [50637] Ceph creates second *miracephnodedisable* object during node disabling | NAME AGE NODE NAME STATE LAST CHECK ISSUE | $MCC_DIR/objects'
'BUG-50561 | MCC | 2.29.0 | 0.0.0 | [50561] The *local-volume-provisioner* pod switches to *CrashLoopBackOff* | local-volume-provisioner-h5lrc 0/1 CrashLoopBackOff 7 (5m12s ago) 14m <IP> <K8S-NODE-NAME> <none> <none> | $MCC_DIR/objects'
'BUG-35429 | MCC | 2.24.0 | 2.25.0 | [35429] The WireGuard interface does not have the IPv4 address assigned | ip a show wireguard.cali | $MCC_DIR/objects'
'BUG-34280 | MCC | 2.24.0 | 2.24.3 | [34280] No reconcile events generated during cluster update | Helm charts are not installed(upgraded) yet. Not ready releases: managed-lcm-api | $MCC_DIR/objects'
'BUG-34210 | MCC | 2.24.0 | 0.0.0 | [34210] Helm charts installation failure during cluster update | Helm charts are not installed(upgraded) yet. | $MCC_DIR/objects'
'BUG-33936 | MCC | 2.24.0 | 2.25.1 | [33936] Deletion failure of a controller node during machine replacement | Resolving dependency Service dhcp-lb in namespace kaas failed: | $MCC_DIR/objects'
'BUG-32761 | MCC | 2.23.5 | 2.26.0 | [32761] Node cleanup fails due to remaining devices | 88621.log:7389:<TIMESTAMP> 88621 ERROR ansible.plugins.callback.ironic_log | $MCC_DIR/objects'
'BUG-34247 | MCC | 2.24.0 | 0.0.0 | [34247] MKE backup fails during cluster update | chown -R nobody:nogroup /var/lib/docker/volumes/ucp-backup/_data | $MCC_DIR/objects'
'BUG-30294 | MCC | 2.23.0 | 2.28.4 | [30294] Replacement of a *master* node is stuck on the *calico-node* Pod start | alias calicoctl=" | $MCC_DIR/objects'
'BUG-35089 | MCC | 2.25.0 | 2.25.1 | [35089] Calico does not set up networking for a pod | felix/route_table.go 898: Syncing routes: found unexpected route; ignoring due to grace period. dest=<IP>/32 ifaceName="cali9731b965838" ifaceRegex="^cali." ipVersion=0x4 tableIndex=254 | $MCC_DIR/objects'
'BUG-5981 | MCC | 0.0.0 | 2.24.0 | [5981] Upgrade gets stuck on the cluster with more that 120 nodes | ID NAME MODE REPLICAS IMAGE PORTS | $MCC_DIR/objects'
'BUG-27797 | MCC | 0.0.0 | 23.2 | [27797] A cluster '\''kubeconfig'\'' stops working during MKE minor version update | -o yaml <affectedClusterName>-kubeconfig \| awk '\''/admin.conf/ {print $2}'\'' \| | $MCC_DIR/objects'
'BUG-29604 | MCC | 2.22.0 | 2.24.0 | [29604] The '\''failed to get kubeconfig'\'' error during TLS configuration | "expirationTime": "<TIMESTAMP>", | $MCC_DIR/objects'
'BUG-30857 | MCC | 2.23.0 | 2.24.0 | [30857] Irrelevant error during Ceph OSD deployment on removable devices | shortClusterInfo: | $MCC_DIR/objects'
'BUG-30635 | MCC | 2.23.0 | 2.24.0 | [30635] Ceph '\''pg_autoscaler'\'' is stuck with the '\''overlapping roots'\'' error | failureDomain: host | $MCC_DIR/objects'
'BUG-31485 | MCC | 2.23.0 | 2.24.0 | [31485] Elasticsearch Curator does not delete indices as per retention period | -o custom-columns=CLUSTER:.metadata.name,NAMESPACE:.metadata.namespace,VERSION:.spec.providerSpec.value.release | $MCC_DIR/objects'
'BUG-29296 | MCC | 2.22.0 | 2.22.0 | [29296] Deployment of a managed cluster fails during provisioning | InspectionError: Failed to obtain hardware details. | $MCC_DIR/objects'
'BUG-30040 | MCC | 2.22.0 | 2.23.0 | [30040] OpenSearch is not in the '\''deployed'\'' status during cluster update | The stacklight/opensearch release of the stacklight/stacklight-bundle HelmBundle | $MCC_DIR/objects'
'BUG-29329 | MCC | 2.21.0 | 2.23.0 | [29329] Recreation of the Patroni container replica is stuck | INFO: doing crash recovery in a single user mode | $MCC_DIR/objects'
'BUG-46245 | MCC | 2.26.0 | 2.28.0 | [46245] Lack of access permissions for *HOC* and *HOCM* objects | - apiGroups: [kaas.mirantis.com] | $MCC_DIR/objects'
'BUG-41305 | MCC | 2.26.0 | 2.28.0 | [41305] DHCP responses are lost between *dnsmasq* and *dhcp-relay* pods | dhcp-relay-<ID> [0-9]/[0-9] Running [0-9]+ (<ID> ago) <ID> <IP> kaas-node-<UUID> | $MCC_DIR/objects'
'BUG-43164 | MCC | 2.27.0 | 2.28.0 | [43164] Rollover policy is not added to indicies created without a policy | <TIMESTAMP>,459 ERROR Failed to complete action: delete_indices. | $MCC_DIR/objects'
'BUG-41540 | MCC | 2.26.0 | 2.26.5 | [41540] LCM Agent cannot grab storage information on a host | {"level":"error","ts":"<TIMESTAMP>","logger":"agent", | $MCC_DIR/objects'
'BUG-41819 | MCC | 2.26.0 | 2.27.0 | [41819] Graceful cluster reboot is blocked by the Ceph *ClusterWorkloadLocks* | message: ClusterMaintenanceRequest found, Ceph Cluster is not ready to upgrade, | $MCC_DIR/objects'
'BUG-42304 | MCC | 2.26.0 | 2.27.1 | [42304] Failure of shard relocation in the OpenSearch cluster | {created_by_kind="StatefulSet",created_by_name="opensearch-master",namespace="stacklight"} | $MCC_DIR/objects'
'BUG-40020 | MCC | 2.26.0 | 2.27.1 | [40020] Rollover policy update is not appllied to the current index | <TIMESTAMP>,459 ERROR Failed to complete action: delete_indices. <class '\''curator.exceptions.FailedExecution'\''>: Exception encountered. Rerun with loglevel DEBUG and/or check Elasticsearch logs for more information. Exception: RequestError(400, '\''illegal_argument_exception'\'', '\''index [.ds-audit-000001] is the write index for data stream [audit] and cannot be deleted'\'') | $MCC_DIR/objects'
'BUG-50287 | MCC | 2.29.0 | 2.29.1 | [50287] BareMetalHost with a Redfish BMC address is stuck on registering phase | address: redfish://<IP>/redfish/v1/Systems/1 | $MCC_DIR/objects'
'BUG-50768 | MCC | 2.29.0 | 2.29.1 | [50768] Failure to update the *MCCUpgrade* object | HTTP response body: {"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure", | $MCC_DIR/objects'
'BUG-20651 | MCC | 2.15.0 | 2.21.0 | [20651] A cluster deployment or update fails with not ready compose deployments | '\''not ready: deployments: kube-system/compose got 0/0 replicas, kube-system/compose-api | $MCC_DIR/objects'
'BUG-26070 | MCC | 2.20.0 | 2.21.0 | [26070] RHEL system cannot be registered in Red Hat portal over MITM proxy | Unable to verify server'\''s identity: [SSL: CERTIFICATE_VERIFY_FAILED] | $MCC_DIR/objects'
'BUG-28134 | MCC | 2.21.0 | 2.22.0 | [28134] Failure to update a cluster with nodes in the '\''Prepare'\'' state | Error: error when evicting pods/"patroni-13-2" -n "stacklight": global timeout reached: 10m0s | $MCC_DIR/objects'
'BUG-27732-1 | MCC | 2.18.0 | 2.22.0 | [27732-1] OpenSearch PVC size custom settings are dismissed during deployment | -n <affectedClusterProjectName> | $MCC_DIR/objects'
'BUG-27732-2 | MCC | 2.18.0 | 2.22.0 | [27732-2] Custom settings for |ESlogstashRetentionTime| are dismissed | notifications: 10 | $MCC_DIR/objects'
'BUG-28783 | MCC | 2.21.0 | 2.22.0 | [28783] Ceph conditon stuck in absence of Ceph cluster secrets info | Failed to configure Ceph cluster: ceph cluster status info is not | $MCC_DIR/objects'
'BUG-26740 | MCC | 2.20.0 | 2.21.0 | [26740] Failure to upgrade a management cluster with a custom certificate | failed to update management cluster: | $MCC_DIR/objects'
'BUG-23853 | MCC | 2.17.0 | 2.18.0 | [23853] Replacement of a regional master node fails on bare metal and |EM| | osdRemoveStatus: | $MCC_DIR/objects'
'BUG-21810 | MCC | 2.15.0 | 0.0.0 | [21810] Upgrade to Cluster releases 5.22.0 and 7.5.0 may get stuck | containerd --version | $MCC_DIR/objects'
'BUG-24075 | MCC | 2.17.0 | 2.18.0 | [24075] Ubuntu 20.04 does not display for |aws-em| | NAME AGE | $MCC_DIR/objects'
'BUG-22563 | MCC | 2.16.0 | 2.17.0 | [22563] Failure to deploy a bare metal node with RAID 1 | sudo mdadm --detail --scan --verbose | $MCC_DIR/objects'
'BUG-24806 | MCC | 2.18.0 | 2.19.0 | [24806] The dnsmasq parameters are not applied on multi-rack clusters | KUBECONFIG=kaas-mgmt-kubeconfig kubectl -n kaas logs --tail 50 deployment/dnsmasq -c dnsmasq-controller | $MCC_DIR/objects'
'BUG-20467 | MCC | 2.15.0 | 2.16.0 | [20467] Failure to deploy an Equinix Metal based management cluster | 0/3 nodes are available: 3 pod has unbound immediate PersistentVolumeClaims. | $MCC_DIR/objects'
'BUG-20189 | MCC | 2.15.0 | 2.16.0 | [20189] Container Cloud web UI reports upgrade while running previous release | Ceph public network address validation failed for cluster default/kaas-mgmt: invalid address '\''<IP>/0'\'' | $MCC_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-54430 | MOS | 25.2 | 25.2 | [54430] AMQP message delivery fails when message size exceeds RabbitMQ limit | oslo_messaging.exceptions.MessageDeliveryFailure: Unable to connect to AMQP server on openstack-neutron-rabbitmq-rabbitmq-0.rabbitmq-neutron.openstack.svc.cluster.local:5672 after inf tries: Basic.publish: (406) PRECONDITION_FAILED - message size 40744975 is larger than configured max size 16777216 | $MOS_DIR/objects'
'KI-13755 | MOS | 25.2 | 25.2 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 25.2 | 25.2 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-54195 | MOS | 25.2 | 25.2 | [54195] Ceph OSD experiencing slow operations in BlueStore during |mosk| | Failed to configure Ceph cluster: ceph cluster verification is failed: | $MOS_DIR/objects'
'KI-24005 | MOS | 2.18.0 | 0.0.0 | [24005] Deletion of a node with ironic Pod is stuck in the *Terminating* state | related bare metal host is stuck in the ``deprovisioning`` | $MOS_DIR/objects'
'KI-54944 | MOS | 25.2 | 25.2 | [54944] Management cluster update may get stuck during host OS upgrade | dpkg-divert: error: cannot divert directories | $MOS_DIR/objects'
'KI-54981 | MOS | 25.2 | 25.2 | [54981] |mgmt-upd| is stuck due to the invalid `BareMetalHostProfile` spec | {"level":"error","ts":"...","logger":"bm.manager","caller":"..." | $MOS_DIR/objects'
'KI-7947 | MOS | 0.0.0 | 25.2.2 | [7947] Docker panic causes its service restarts every 24 hours | Oct 12 21:20:11 kaas-node-<ID> dockerd[...]: created by github.com/docker/docker/internal/mirantis/telemetry.(*Telemetry).start in goroutine 1 | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-54430 | MOS | 25.2.3 | 25.2.3 | [54430] AMQP message delivery fails when message size exceeds RabbitMQ limit | oslo_messaging.exceptions.MessageDeliveryFailure: Unable to connect to AMQP server on openstack-neutron-rabbitmq-rabbitmq-0.rabbitmq-neutron.openstack.svc.cluster.local:5672 after inf tries: Basic.publish: (406) PRECONDITION_FAILED - message size 40744975 is larger than configured max size 16777216 | $MOS_DIR/objects'
'KI-13755 | MOS | 25.2.3 | 25.2.3 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 25.2.3 | 25.2.3 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-54195 | MOS | 25.2.3 | 25.2.3 | [54195] Ceph OSD experiencing slow operations in BlueStore during |mosk| | Failed to configure Ceph cluster: ceph cluster verification is failed: | $MOS_DIR/objects'
'KI-24005 | MOS | 2.18.0 | 0.0.0 | [24005] Deletion of a node with ironic Pod is stuck in the *Terminating* state | related bare metal host is stuck in the ``deprovisioning`` | $MOS_DIR/objects'
'KI-54981 | MOS | 25.2.3 | 25.2.3 | [54981] |mgmt-upd| is stuck due to the invalid `BareMetalHostProfile` spec | {"level":"error","ts":"...","logger":"bm.manager","caller":"..." | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-54430 | MOS | 25.2.2 | 25.2.2 | [54430] AMQP message delivery fails when message size exceeds RabbitMQ limit | oslo_messaging.exceptions.MessageDeliveryFailure: Unable to connect to AMQP server on openstack-neutron-rabbitmq-rabbitmq-0.rabbitmq-neutron.openstack.svc.cluster.local:5672 after inf tries: Basic.publish: (406) PRECONDITION_FAILED - message size 40744975 is larger than configured max size 16777216 | $MOS_DIR/objects'
'KI-13755 | MOS | 25.2.2 | 25.2.2 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 25.2.2 | 25.2.2 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-54195 | MOS | 25.2.2 | 25.2.2 | [54195] Ceph OSD experiencing slow operations in BlueStore during |mosk| | Failed to configure Ceph cluster: ceph cluster verification is failed: | $MOS_DIR/objects'
'KI-24005 | MOS | 2.18.0 | 0.0.0 | [24005] Deletion of a node with ironic Pod is stuck in the *Terminating* state | related bare metal host is stuck in the ``deprovisioning`` | $MOS_DIR/objects'
'KI-54981 | MOS | 25.2.2 | 25.2.2 | [54981] |mgmt-upd| is stuck due to the invalid `BareMetalHostProfile` spec | {"level":"error","ts":"...","logger":"bm.manager","caller":"..." | $MOS_DIR/objects'
'KI-31186,34132 | MOS | 2.24.0 | 0.0.0 | [31186,34132] Pods get stuck during MariaDB operations | [ERROR] WSREP: Corrupt buffer header: | $MOS_DIR/objects'
'KI-42386 | MOS | 2.24.0 | 0.0.0 | [42386] A load balancer service does not obtain the external IP address | stacklight iam-proxy-prometheus LoadBalancer <IP> <pending> 443:30430/TCP | $MOS_DIR/objects'
'KI-54430 | MOS | 25.2.1 | 25.2.1 | [54430] AMQP message delivery fails when message size exceeds RabbitMQ limit | oslo_messaging.exceptions.MessageDeliveryFailure: Unable to connect to AMQP server on openstack-neutron-rabbitmq-rabbitmq-0.rabbitmq-neutron.openstack.svc.cluster.local:5672 after inf tries: Basic.publish: (406) PRECONDITION_FAILED - message size 40744975 is larger than configured max size 16777216 | $MOS_DIR/objects'
'KI-13755 | MOS | 25.2.1 | 25.2.1 | [13755] TF pods switch to CrashLoopBackOff after a simultaneous reboot | Datacenter: DC1 | $MOS_DIR/objects'
'KI-42896 | MOS | 25.2.1 | 25.2.1 | [42896] Cassandra cluster contains extra node | Datacenter: dc1 | $MOS_DIR/objects'
'KI-54195 | MOS | 25.2.1 | 25.2.1 | [54195] Ceph OSD experiencing slow operations in BlueStore during |mosk| | Failed to configure Ceph cluster: ceph cluster verification is failed: | $MOS_DIR/objects'
'KI-24005 | MOS | 2.18.0 | 0.0.0 | [24005] Deletion of a node with ironic Pod is stuck in the *Terminating* state | related bare metal host is stuck in the ``deprovisioning`` | $MOS_DIR/objects'
'KI-54981 | MOS | 25.2.1 | 25.2.1 | [54981] |mgmt-upd| is stuck due to the invalid `BareMetalHostProfile` spec | {"level":"error","ts":"...","logger":"bm.manager","caller":"..." | $MOS_DIR/objects'
'KI-7947 | MOS | 0.0.0 | 25.2.2 | [7947] Docker panic causes its service restarts every 24 hours | Oct 12 21:20:11 kaas-node-<ID> dockerd[...]: created by github.com/docker/docker/internal/mirantis/telemetry.(*Telemetry).start in goroutine 1 | $MOS_DIR/objects'
)
local FOUND_ANY=false
for issue in "${ISSUES[@]}"; do
IFS="|" read -r ID PROD MIN_VER MAX_VER TITLE PATTERN SEARCH_PATH <<< "$issue"
# Trim whitespace
ID=$(echo "$ID" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'); PROD=$(echo "$PROD" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'); MIN_VER=$(echo "$MIN_VER" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
MAX_VER=$(echo "$MAX_VER" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'); TITLE=$(echo "$TITLE" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'); PATTERN=$(echo "$PATTERN" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
SEARCH_PATH=$(echo "$SEARCH_PATH" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
[[ -z "$ID" ]] && continue
# Version Filtering - Strict Match or Series Match
local CURRENT_VER="0.0.0"
[[ "$PROD" == "MOS" ]] && CURRENT_VER="$MOS_VER"
[[ "$PROD" == "MCC" ]] && CURRENT_VER="$MCC_VER"
[[ "$PROD" == "ALL" ]] && CURRENT_VER="$MOS_VER"
if [[ "$PROD" != "ALL" && "$MIN_VER" != "0.0.0" ]]; then
# Check if current version matches the documented version (e.g. 25.2 matches 25.2.3)
if [[ "$CURRENT_VER" != "$MIN_VER"* && "$CURRENT_VER" != "$MIN_VER" ]]; then
continue
fi
fi
[[ ! -d "$SEARCH_PATH" ]] && continue
[[ -z "$PATTERN" ]] && continue
# Replace placeholders with regex patterns
local FINAL_PATTERN="$PATTERN"
# IP Address
FINAL_PATTERN=$(echo "$FINAL_PATTERN" | sed -E 's/<IP>/([0-9]{1,3}\.){3}[0-9]{1,3}/g')
# Timestamp (various formats)
FINAL_PATTERN=$(echo "$FINAL_PATTERN" | sed -E 's/<TIMESTAMP>/[0-9]{4}-[0-9]{2}-[0-9]{2}[ T,][0-9]{2}:[0-9]{2}:[0-9]{2}(\.[0-9]{3})?/g')
# UUID
FINAL_PATTERN=$(echo "$FINAL_PATTERN" | sed -E 's/<UUID>/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/g')
# ID (short suffix or identifier)
FINAL_PATTERN=$(echo "$FINAL_PATTERN" | sed -E 's/<ID>/[a-z0-9-]+/g')
MATCHES=$(grep -rEi "$FINAL_PATTERN" "$SEARCH_PATH" 2>/dev/null | head -n 5)
if [[ -n "$MATCHES" ]]; then
FOUND_ANY=true
echo "[!] POTENTIAL MATCH FOUND: $ID - $TITLE" >>"$OUT"
echo " Pattern: $PATTERN" >>"$OUT"
echo " Evidence (last 5 matches):" >>"$OUT"
echo "$MATCHES" | sed 's/^/ /' >>"$OUT"
echo "----------------------------------------------------" >>"$OUT"
fi
done
if [ "$FOUND_ANY" = false ]; then
echo "No specific CLUSTER Known Issues/Bugs were automatically detected for version $MOS_VER / $MCC_VER." >>"$OUT"
fi
}
# --- IP Overlap Check Function ---
check_overlaps() {
python3 - <<EOF
import ipaddress
import sys
def parse_range(r):
r = r.strip()
if not r or r == "None" or r == "null": return []
try:
if '-' in r:
start, end = r.split('-')
return list(ipaddress.summarize_address_range(
ipaddress.ip_address(start.strip()),
ipaddress.ip_address(end.strip())
))
return [ipaddress.ip_network(r, strict=False)]
except Exception as e:
return []
lines = sys.stdin.readlines()
networks = []
for line in lines:
for item in line.replace('[','').replace(']','').split(','):
networks.extend(parse_range(item))
overlaps = []
for i in range(len(networks)):
for j in range(i + 1, len(networks)):
if networks[i].overlaps(networks[j]):
overlaps.append(f"Overlap: {networks[i]} <-> {networks[j]}")
if overlaps:
print("\n🛑 ALERT: IP RANGE OVERLAPS DETECTED!")
for o in set(overlaps): print(o)
else:
print("\n✅ No IP overlaps detected in this audit.")
EOF
}
# --- Cert audit function (Hardened & Informative) ---
audit_k8s_secret() {
local YAML_FILE="$1"
if [[ -z "$YAML_FILE" || ! -f "$YAML_FILE" ]]; then return 1; fi
local TMP_DIR=$(mktemp -d)
local DATA_EXPR='(.Object.data // .data // .Object.stringData // .stringData)'
local KEYS=$(yq eval "$DATA_EXPR | keys | .[]" "$YAML_FILE" 2>/dev/null)
[[ -z "$KEYS" ]] && {
rm -rf "$TMP_DIR"
return 1
}
echo "===================================================="
echo "🔍 AUDIT REPORT: $(basename "$YAML_FILE")"
echo "===================================================="
local LEAF_CERT=""
local CA_CERT=""
local PRIVATE_KEY=""
for KEY in $KEYS; do
local VAL=$(yq eval "$DATA_EXPR.\"$KEY\"" "$YAML_FILE" | tr -d '[:space:]')
local TARGET_FILE="$TMP_DIR/$KEY"
# Try decoding
echo "$VAL" | base64 -d >"$TARGET_FILE" 2>/dev/null
# If not base64/PEM, treat as plain text
if ! grep -q "BEGIN" "$TARGET_FILE" 2>/dev/null; then echo "$VAL" >"$TARGET_FILE"; fi
local CONTENT_TYPE=$(grep -m 1 "BEGIN" "$TARGET_FILE" 2>/dev/null)
[[ -z "$CONTENT_TYPE" ]] && continue
echo "--- Field: [$KEY] ---"
if [[ "$CONTENT_TYPE" == *"PRIVATE KEY"* ]]; then
# Silent Probe: Only process if it's a valid key (RSA/EC)
if openssl pkey -in "$TARGET_FILE" -text -noout &>/dev/null; then
PRIVATE_KEY="$TARGET_FILE"
echo "-----BEGIN PRIVATE KEY-----"
echo "[REDACTED - SENSITIVE DATA]"
echo "-----END PRIVATE KEY-----"
echo -e "\n----------------------------------------------------"
K_MOD=$(openssl rsa -noout -modulus -in "$TARGET_FILE" 2>/dev/null | openssl md5 | awk '{print $NF}')
echo "🔢 RSA Modulus MD5: ${K_MOD:-[Non-RSA Key]}"
fi
elif [[ "$CONTENT_TYPE" == *"CERTIFICATE"* ]]; then
if openssl x509 -in "$TARGET_FILE" -noout &>/dev/null; then
cat "$TARGET_FILE"
echo -e "\n----------------------------------------------------"
local CN=$(openssl x509 -noout -subject -in "$TARGET_FILE" -nameopt RFC2253 | sed 's/.*CN=//;s/,.*//')
local ISSUER=$(openssl x509 -noout -issuer -in "$TARGET_FILE" -nameopt RFC2253 | sed 's/^issuer=//')
local SUBJECT=$(openssl x509 -noout -subject -in "$TARGET_FILE" -nameopt RFC2253 | sed 's/^subject=//')
local EXPIRY=$(openssl x509 -noout -enddate -in "$TARGET_FILE" | cut -d= -f2)
local IS_CA=$(openssl x509 -noout -text -in "$TARGET_FILE" 2>/dev/null | grep "CA:TRUE")
local SAN=$(openssl x509 -noout -ext subjectAltName -in "$TARGET_FILE" 2>/dev/null | grep -v "Subject Alternative Name" | xargs)
C_MOD=$(openssl x509 -noout -modulus -in "$TARGET_FILE" 2>/dev/null | openssl md5 | awk '{print $NF}')
echo "📋 CN: ${CN:-Unknown}"
echo "🌐 SAN: ${SAN:-None}"
echo "📅 Expires: $EXPIRY"
echo "🔢 Modulus MD5: ${C_MOD:-[Non-RSA Cert]}"
# --- Expiry Alert Logic ---
EXPIRY_SEC=$(date -d "$EXPIRY" +%s 2>/dev/null)
NOW_SEC=$(date +%s)
if [[ -n "$EXPIRY_SEC" ]]; then
if [ "$EXPIRY_SEC" -lt "$NOW_SEC" ]; then
echo "📅 ALERT: 🛑 EXPIRED"
elif [ "$EXPIRY_SEC" -lt $((NOW_SEC + 2592000)) ]; then
echo "📅 ALERT: 🚨 EXPIRING SOON (within 30 days)"
fi
fi
if [[ "$ISSUER" == "$SUBJECT" ]]; then
echo "🧬 Status: ⚠️ ROOT CA (Self-Signed)"
CA_CERT="$TARGET_FILE"
elif [[ -n "$IS_CA" ]]; then
echo "🧬 Status: 🔗 INTERMEDIATE CA"
CA_CERT="$TARGET_FILE"
else
echo "🧬 Status: 📄 LEAF CERTIFICATE"
LEAF_CERT="$TARGET_FILE"
fi
fi
fi
echo ""
done
# --- FINAL VALIDATIONS ---
echo "===================================================="
echo "⚖️ FINAL VALIDATIONS"
echo "===================================================="
local CHECKS_RUN=0
# 1. Private Key vs Leaf Cert
if [[ -n "$LEAF_CERT" && -n "$PRIVATE_KEY" ]]; then
LM=$(openssl x509 -noout -modulus -in "$LEAF_CERT" 2>/dev/null | openssl md5)
KM=$(openssl rsa -noout -modulus -in "$PRIVATE_KEY" 2>/dev/null | openssl md5)
printf "Match (Key <-> Leaf): "
if [[ -n "$LM" && "$LM" == "$KM" ]]; then
echo "✅ VALID"
else
echo "❌ MISMATCH"
fi
CHECKS_RUN=1
fi
# 2. Leaf Cert vs CA Cert
if [[ -n "$LEAF_CERT" && -n "$CA_CERT" ]]; then
printf "Chain (Leaf <-> CA): "
if openssl verify -CAfile "$CA_CERT" "$LEAF_CERT" 2>/dev/null | grep -q "OK"; then
echo "✅ VERIFIED"
else
echo "❌ FAILED"
fi
CHECKS_RUN=1
fi
# 3. Fallback message if no related pairs were found
if [[ $CHECKS_RUN -eq 0 ]]; then
if [[ -n "$CA_CERT" && -z "$LEAF_CERT" ]]; then
echo "ℹ️ INFO: Standalone CA/Self-Signed cert (no chain to verify)."
elif [[ -n "$PRIVATE_KEY" && -z "$LEAF_CERT" ]]; then
echo "ℹ️ INFO: Standalone Private Key (no certificate to match)."
else
echo "ℹ️ INFO: No related crypto pairs found for validation."
fi
fi
rm -rf "$TMP_DIR"
echo ""
}
# Detect Log Source
if [[ -d "./logs" ]]; then
BASE_DIR="./logs"
else
BASE_DIR="."
fi
echo "Generating report. This operation may take several minutes... Please wait."
echo ""
# List all files on logs:
echo "🚀 Indexing files and starting analysis..."
find "$BASE_DIR" -not -path "$LOGPATH/*" -type f -name '*' >"$LOGPATH/files"
# --- GLOBAL COUNTERS ---
MCC_RUNNING=0; MCC_NON_RUNNING=0; MCC_COMPLETED=0
MOS_RUNNING=0; MOS_NON_RUNNING=0; MOS_COMPLETED=0
MCC_NON_RUNNING_LIST=""
MOS_NON_RUNNING_LIST=""
# Discover MCC and MOS cluster directories
# Priority 1: Top-level named directories
MCC_DIR=$(find "$BASE_DIR" -maxdepth 1 -type d -name "kaas-mgmt" | head -n 1)
MOS_DIR=$(find "$BASE_DIR" -maxdepth 1 -type d -name "mos" | head -n 1)
# Fallback: Search deeper but avoid subdirectories of already found MCC_DIR
if [[ -z "$MCC_DIR" ]]; then
MCC_DIR=$(find "$BASE_DIR" -type d -name "kaas-mgmt" | head -n 1)
fi
if [[ -z "$MOS_DIR" ]]; then
# Find "mos" but exclude paths that are inside MCC_DIR
if [[ -n "$MCC_DIR" ]]; then
MOS_DIR=$(find "$BASE_DIR" -type d -name "mos" | grep -v "$MCC_DIR" | head -n 1)
else
MOS_DIR=$(find "$BASE_DIR" -type d -name "mos" | head -n 1)
fi
fi
# Fallback robust discovery if standard names not found
if [[ -z "$MCC_DIR" ]]; then
INDICATOR_MCC=$(grep "/objects/cluster/kaas.mirantis.com/kaasreleases/" "$LOGPATH/files" | head -n 1)
[[ -n "$INDICATOR_MCC" ]] && MCC_DIR=$(echo "$INDICATOR_MCC" | sed 's|/objects/cluster/kaas.mirantis.com/kaasreleases/.*||')
fi
if [[ -z "$MOS_DIR" ]]; then
INDICATOR_MOS=$(grep "/objects/namespaced/openstack/lcm.mirantis.com/openstackdeploymentstatus/" "$LOGPATH/files" | head -n 1)
[[ -n "$INDICATOR_MOS" ]] && MOS_DIR=$(echo "$INDICATOR_MOS" | sed 's|/objects/namespaced/openstack/lcm.mirantis.com/openstackdeploymentstatus/.*||')
fi
# Ensure paths are absolute or properly relative for consistent usage
[[ -n "$MCC_DIR" ]] && MCC_DIR=$(cd "$MCC_DIR" && pwd)
[[ -n "$MOS_DIR" ]] && MOS_DIR=$(cd "$MOS_DIR" && pwd)
# Re-adjust to be relative to CWD if possible (cleaner logs)
[[ -n "$MCC_DIR" ]] && MCC_DIR=${MCC_DIR#$FULL_CWD/}
[[ -n "$MOS_DIR" ]] && MOS_DIR=${MOS_DIR#$FULL_CWD/}
[[ "$MCC_DIR" == "$(pwd)" ]] && MCC_DIR="."
[[ "$MOS_DIR" == "$(pwd)" ]] && MOS_DIR="."
# Detect MCC Version
MCC_VER_DETECTED="0.0.0"
if [[ -n "$MCC_DIR" ]]; then
MCC_FILE=$(ls "$MCC_DIR"/objects/namespaced/default/cluster.k8s.io/clusters/*.yaml 2>/dev/null | head -n 1)
if [[ -f "$MCC_FILE" ]]; then
MCC_VER_DETECTED=$(yq eval '.Object.spec.providerSpec.value.kaas.release // .spec.providerSpec.value.kaas.release' "$MCC_FILE" 2>/dev/null | sed 's/kaas-//' | tr '-' '.')
fi
fi
# Detect MOS Version
MOS_VER_DETECTED="0.0.0"
if [[ -n "$MOS_DIR" ]]; then
MOS_STATUS_FILE=$(ls $MOS_DIR/objects/namespaced/openstack/lcm.mirantis.com/openstackdeploymentstatus/*.yaml 2>/dev/null | head -n 1)
if [[ -n "$MOS_STATUS_FILE" ]]; then
REL_RAW=$(grep -m1 " release: " "$MOS_STATUS_FILE" | sed -e 's/.*release: //' -e 's/[[:space:]]//g' -e 's/+/./g' -e 's/\.$//')
IFS='.' read -r -a V <<<"$REL_RAW"
MOS_VER_DETECTED="${V[0]}.${V[1]}.${V[2]}+${V[3]}.${V[4]}${V[5]:+.${V[5]}}"
fi
fi
# Run Known Issues Diagnostic EARLY
check_known_issues "$MOS_VER_DETECTED" "$MCC_VER_DETECTED"
if [[ -n "$MCC_DIR" ]]; then
MCC_FILE=$(ls "$MCC_DIR"/objects/namespaced/default/cluster.k8s.io/clusters/*.yaml 2>/dev/null | head -n 1)
if [[ -f "$MCC_FILE" ]]; then
MCCNAME=$(yq eval '.Object.metadata.name // .metadata.name' "$MCC_FILE" 2>/dev/null)
MCCNAMESPACE=$(yq eval '.Object.metadata.namespace // .metadata.namespace' "$MCC_FILE" 2>/dev/null)