-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
1239 lines (1140 loc) · 75.2 KB
/
index.xml
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Packit Service Status</title>
<link>https://status.packit.dev/</link>
<description>Incident history</description>
<generator>github.com/cstate</generator>
<language>en</language>
<lastBuildDate>Fri, 01 Nov 2024 08:00:00 +0100</lastBuildDate>
<atom:link href="https://status.packit.dev/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>[Resolved] OpenScanHub outage</title>
<link>https://status.packit.dev/issues/2024-11-01-osh-outage/</link>
<pubDate>Fri, 01 Nov 2024 08:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2024-11-01-osh-outage/</guid>
<category>2024-11-04T21:00:00+01:00</category>
<description><p>OpenScanHub service is having an outage resulting in scans submitted by Packit being stuck in a <code>FREE</code> state.</p>
<p>You can monitor the progress of resolving the underlying issue here: <a href="https://pagure.io/fedora-infrastructure/issue/12160">https://pagure.io/fedora-infrastructure/issue/12160</a>.</p>
</description>
</item>
<item>
<title>[Resolved] Maintenance outage</title>
<link>https://status.packit.dev/issues/2024-10-09-maintenance/</link>
<pubDate>Wed, 09 Oct 2024 20:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2024-10-09-maintenance/</guid>
<category>2024-10-10T20:10:00+02:00</category>
<description><p>Database volume needs to be enlarged to accomodate the load on the Packit
Service. To minimize the amount of jobs affected by this maintenance there will
be no jobs processed, but they should be enqueued until the outage is over.</p>
<p>In case you are affected, please retrigger the jobs accordingly (via comment on
the affected pull requests, or Re-Run button on GitHub Checks).</p>
<p>Thanks for understanding.</p>
</description>
</item>
<item>
<title>[Resolved] Testing Farm outage</title>
<link>https://status.packit.dev/issues/2024-10-01-tf-outage/</link>
<pubDate>Tue, 01 Oct 2024 10:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2024-10-01-tf-outage/</guid>
<category>2024-10-01T11:30:00+02:00</category>
<description><p>Testing Farm infrastructure is having an outage resulting in test jobs being stuck in queued state.
You can watch the status of the outage here: <a href="https://status.testing-farm.io/issues/2024-10-01-public-ranch-outage/">https://status.testing-farm.io/issues/2024-10-01-public-ranch-outage/</a>.</p>
<p>If the jobs end on error they can be <a href="https://packit.dev/docs/configuration/upstream/tests#restart-testing">retriggered</a> by commenting <code>/packit test</code> in the corresponding pull requests.</p>
</description>
</item>
<item>
<title>[Resolved] Fedora infrastructure outage</title>
<link>https://status.packit.dev/issues/2024-09-16-fedora-outage/</link>
<pubDate>Sun, 15 Sep 2024 08:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2024-09-16-fedora-outage/</guid>
<category>2024-09-16T17:30:00+00:00</category>
<description><p>Fedora infrastructure is having an outage resulting in some Copr build jobs failing
with error <code>Failed to download metadata... Librepo error: Cannot download repomd.xml...</code>
You can watch the status of the issue here: <a href="https://pagure.io/fedora-infrastructure/issue/12183">https://pagure.io/fedora-infrastructure/issue/12183</a>.</p>
</description>
</item>
<item>
<title>[Resolved] Testing Farm outage</title>
<link>https://status.packit.dev/issues/2024-08-30-tf-outage/</link>
<pubDate>Fri, 30 Aug 2024 08:30:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2024-08-30-tf-outage/</guid>
<category>2024-08-30T13:30:00+00:00</category>
<description><p>Testing Farm infrastructure is having an outage resulting in test jobs being stuck in queued state.
You can watch the status of the outage here: <a href="https://status.testing-farm.io/issues/2024-08-30-redhat-large-logs/">https://status.testing-farm.io/issues/2024-08-30-redhat-large-logs/</a>.</p>
<p>If the jobs end on error they can be <a href="https://packit.dev/docs/configuration/upstream/tests#restart-testing">retriggered</a> by commenting <code>/packit test</code> in the corresponding pull requests.</p>
</description>
</item>
<item>
<title>[Resolved] Testing Farm outage</title>
<link>https://status.packit.dev/issues/2024-08-28-tf-outage/</link>
<pubDate>Wed, 28 Aug 2024 12:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2024-08-28-tf-outage/</guid>
<category>2024-08-28T18:00:00+02:00</category>
<description><p>Testing Farm infrastructure is having an outage resulting in test jobs being stuck in queued state.</p>
<p>The affected test jobs should be <a href="https://packit.dev/docs/configuration/upstream/tests#restart-testing">retriggered</a> by commenting <code>/packit test</code> in the corresponding pull requests.</p>
</description>
</item>
<item>
<title>[Resolved] Testing Farm outage</title>
<link>https://status.packit.dev/issues/2024-08-05-tf-outage/</link>
<pubDate>Mon, 05 Aug 2024 08:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2024-08-05-tf-outage/</guid>
<category>2024-08-05T15:00:00+02:00</category>
<description><p>Testing Farm Fedora images are outdated and public ranch requests processing paused.</p>
<p>You can watch the status of the outage here: <a href="https://status.testing-farm.io/issues/2024-08-05-expired-images-f39-f40/">https://status.testing-farm.io/issues/2024-08-05-expired-images-f39-f40/</a>.</p>
</description>
</item>
<item>
<title>[Resolved] Testing Farm outage</title>
<link>https://status.packit.dev/issues/2024-08-02-tf-outage/</link>
<pubDate>Fri, 02 Aug 2024 06:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2024-08-02-tf-outage/</guid>
<category>2024-08-02T11:00:00+02:00</category>
<description><p>Testing Farm public ranch is having an outage resulting in tests failing for <code>fedora-rawhide-x86_64</code> target.
You can watch the status of the outage here: <a href="https://status.testing-farm.io/issues/2024-08-02-rawhide-outage/">https://status.testing-farm.io/issues/2024-08-02-rawhide-outage/</a>.</p>
</description>
</item>
<item>
<title>[Resolved] Testing Farm outage</title>
<link>https://status.packit.dev/issues/2024-07-22-tf-outage/</link>
<pubDate>Mon, 22 Jul 2024 00:16:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2024-07-22-tf-outage/</guid>
<category>2024-07-22T12:00:00+02:00</category>
<description><p>Testing Farm infrastructure is having an outage resulting in tests stuck in a queued state.
You can watch the status of the outage here: <a href="https://status.testing-farm.io/issues/2024-07-22-public-ranch-outage/">https://status.testing-farm.io/issues/2024-07-22-public-ranch-outage/</a></p>
<p>The tests should be executed once the outage is resolved.</p>
</description>
</item>
<item>
<title>[Resolved] release-monitoring.org outage</title>
<link>https://status.packit.dev/issues/2024-07-02-release-monitoring.org-outage/</link>
<pubDate>Wed, 26 Jun 2024 08:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2024-07-02-release-monitoring.org-outage/</guid>
<category>2024-07-03T16:00:00+02:00</category>
<description><p>There is a New Hotness outage resulting in no Bugzillas about new releases being filed.
As a result, no Packit update dist-git pull requests will be created.</p>
<p>There is a workaround: edit your release-monitoring.org project and tick the <code>Check latest release on submit</code> checkbox.</p>
<p><em>Update</em>: It seems that the issue has been resolved and new release bugzillas are being filed automatically again.</p>
</description>
</item>
<item>
<title>[Resolved] Fedora integration outage</title>
<link>https://status.packit.dev/issues/2024-05-27-fedora-outage/</link>
<pubDate>Mon, 27 May 2024 14:20:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2024-05-27-fedora-outage/</guid>
<category>2024-05-27T18:35:00+02:00</category>
<description><p>One of dependencies for our Fedora Messaging consumer has not been installed
during the image build which resulted in an outage of the Fedora downstream
integration.</p>
<p>Fedora integration is disrupted:</p>
<ul>
<li>since 2pm CEST for our stage deployment</li>
<li>since 6pm CEST for our production deployment</li>
</ul>
<p>Please trigger the respective jobs manually, if you are affected, once the outage has been resolved.</p>
<p>We are very sorry for the inconvenience!</p>
<p><em>Edit #1</em>: Issue has been resolved for both production and staging deployments
by rolling back to the previous image builds.</p>
</description>
</item>
<item>
<title>[Resolved] New Hotness outage </title>
<link>https://status.packit.dev/issues/2024-05-16-new-hotness-outage/</link>
<pubDate>Thu, 09 May 2024 03:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2024-05-16-new-hotness-outage/</guid>
<category>2024-05-16T14:30:00+02:00</category>
<description><p>There was a New Hotness outage resulting in no Bugzillas about new release being filed.
As a result, no Packit update dist-git pull requests were created.</p>
<p>Please <a href="https://packit.dev/docs/fedora-releases-guide/dist-git-onboarding#pull_from_upstream">trigger</a>
the release syncs manually if you are affected by commenting in any dist-git pull request:</p>
<pre><code>/packit pull-from-upstream
</code></pre>
<p>We are very sorry for the inconvenience!</p>
</description>
</item>
<item>
<title>[Resolved] Outage </title>
<link>https://status.packit.dev/issues/2024-05-07-outage/</link>
<pubDate>Tue, 07 May 2024 13:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2024-05-07-outage/</guid>
<category>2024-05-07T16:00:00+02:00</category>
<description><p>There has been a Packit outage.
The jobs in the queue are now being picked up again and should be processed gradually
(you might have experienced a delay in job execution).
We are very sorry for the inconvenience!</p>
</description>
</item>
<item>
<title>[Resolved] Outage </title>
<link>https://status.packit.dev/issues/2024-04-25-outage/</link>
<pubDate>Thu, 25 Apr 2024 14:30:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2024-04-25-outage/</guid>
<category>2024-04-25T19:30:00+02:00</category>
<description><p>There has been a Packit outage. We are investigating the reason of it.
The jobs in the queue are now being picked up again and should be processed gradually
(you might have experienced a delay in job execution).
We are very sorry for the inconvenience!</p>
</description>
</item>
<item>
<title>[Resolved] Many Copr builds pending</title>
<link>https://status.packit.dev/issues/2024-04-23-copr-pending-queue/</link>
<pubDate>Tue, 23 Apr 2024 14:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2024-04-23-copr-pending-queue/</guid>
<category>2024-04-23T21:00:00+01:00</category>
<description><p>The Copr backend is under a huge load and many builds are still in a pending state.
The Copr builds will take more time than usual to finish.
You can monitor the pending queue here: <a href="https://copr.fedorainfracloud.org/status/stats/">https://copr.fedorainfracloud.org/status/stats/</a>.</p>
</description>
</item>
<item>
<title>[Resolved] GitHub outage</title>
<link>https://status.packit.dev/issues/2024-04-05-github-outage/</link>
<pubDate>Fri, 05 Apr 2024 10:15:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2024-04-05-github-outage/</guid>
<category>2024-04-05T11:15:00+01:00</category>
<description><p>There is an ongoing GitHub outage.
You can monitor the status and subscribe for updates here: <a href="https://www.githubstatus.com">https://www.githubstatus.com</a></p>
</description>
</item>
<item>
<title>[Resolved] Fedora infrastructure authentication problem</title>
<link>https://status.packit.dev/issues/2024-02-26-fedora-auth-problem/</link>
<pubDate>Mon, 26 Feb 2024 13:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2024-02-26-fedora-auth-problem/</guid>
<category>2024-02-26T13:28:00+00:00</category>
<description><p>There is a problem with authentication in Fedora Infrastructure, leading to failures of jobs that interact with it
(mostly <code>propose_downstream</code>, <code>pull_from_upstream</code>, <code>koji_build</code>, <code>bodhi_update</code>)
as Packit is unable to authenticate. To stay updated on the root cause of this problem, please
track <a href="https://pagure.io/fedora-infrastructure/issue/11793">this issue</a>.</p>
<p>The problem should be now resolved. You can retrigger the failed jobs by:</p>
<ul>
<li><code>/packit propose-downstream</code> comment in any upstream issue</li>
<li><code>/packit pull-from-upstream</code> / <code>/packit koji-build</code> / <code>/packit create-update</code> comment in any dist-git pull-request</li>
</ul>
</description>
</item>
<item>
<title>[Resolved] Koji Outage</title>
<link>https://status.packit.dev/issues/2024-02-21-koji-outage/</link>
<pubDate>Wed, 21 Feb 2024 21:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2024-02-21-koji-outage/</guid>
<category>2024-02-22T00:00:00+00:00</category>
<description><p>Planned Outage:</p>
<p>Koji upgrade at 2024-02-21 21:00 UTC</p>
<p>There will be an outage starting at 2024-02-21 21:00 UTC,
which will last approximately 3 hours.</p>
<p>Reason for outage:</p>
<p>Koji will be upgraded to 1.34.0, which requires a schema update that touches many rows.
Koji team estimate this will take about 45minutes to complete and during that time,
Koji service will be completely offline.</p>
<p>You should avoid to trigger Koji builds in Packit (e.g. merging distgit Packit pull requests).
You can retrigger the build, if it is missing, commenting a pull request with:</p>
<p>/packit koji-build</p>
</description>
</item>
<item>
<title>[Resolved] Pull From Upstream Outage</title>
<link>https://status.packit.dev/issues/2024-02-22-pull-from-upstream-outage/</link>
<pubDate>Wed, 21 Feb 2024 00:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2024-02-22-pull-from-upstream-outage/</guid>
<category>2024-02-22T14:40:00+00:00</category>
<description><p>pull_from_upstream jobs were not executed properly at the given time frame because of an expired token.</p>
<p>Please <a href="https://packit.dev/docs/fedora-releases-guide#retriggering-1">trigger</a>
the release syncs manually if you are affected by commenting in any dist-git pull request:</p>
<pre><code>/packit pull-from-upstream
</code></pre>
<p>We are very sorry for the inconvenience!</p>
</description>
</item>
<item>
<title>[Resolved] Fedora infrastructure authentication problem</title>
<link>https://status.packit.dev/issues/2024-01-23-fedora-auth-problem/</link>
<pubDate>Mon, 22 Jan 2024 22:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2024-01-23-fedora-auth-problem/</guid>
<category>2024-01-23T21:00:00+01:00</category>
<description><p>The Fedora account system is currently down, leading to failures of jobs that interact with it
(mostly <code>propose_downstream</code>, <code>pull_from_upstream</code>, <code>koji_build</code>, <code>bodhi_update</code>)
as Packit is unable to authenticate. To stay updated on the root cause of this problem, please
track <a href="https://pagure.io/fedora-infrastructure/issue/11733">this issue</a>.</p>
<p>The problem should be now resolved. You can retrigger the failed jobs by:</p>
<ul>
<li><code>/packit propose-downstream</code> comment in any upstream issue</li>
<li><code>/packit pull-from-upstream</code> / <code>/packit koji-build</code> / <code>/packit create-update</code> comment in any dist-git pull-request</li>
</ul>
</description>
</item>
<item>
<title>[Resolved] Outage of automatic triggering of downstream Koji builds</title>
<link>https://status.packit.dev/issues/2024-01-11-downstream-koji-builds-outage/</link>
<pubDate>Thu, 11 Jan 2024 09:30:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2024-01-11-downstream-koji-builds-outage/</guid>
<category>2024-01-15T15:20:00+01:00</category>
<description><p>Since 2024-01-11 until 2024-01-15 downstream Koji builds weren&rsquo;t automatically triggered
due to Fedora Infrastructure changes. Please <a href="https://packit.dev/docs/fedora-releases-guide#retriggering-2">trigger</a>
your builds manually if you are affected.</p>
</description>
</item>
<item>
<title>[Resolved] GitHub outage</title>
<link>https://status.packit.dev/issues/2024-01-09-github-outage/</link>
<pubDate>Tue, 09 Jan 2024 14:45:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2024-01-09-github-outage/</guid>
<category>2024-11-09T15:40:00+01:00</category>
<description><p>There is an ongoing GitHub outage.
You can monitor the status and subscribe for updates here: <a href="https://www.githubstatus.com">https://www.githubstatus.com</a></p>
</description>
</item>
<item>
<title>[Resolved] Christmas is here 🎄</title>
<link>https://status.packit.dev/issues/2023-12-23-christmas-2023/</link>
<pubDate>Fri, 22 Dec 2023 19:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-12-23-christmas-2023/</guid>
<category>2024-01-02T09:00:00+01:00</category>
<description><p>All the team is on vacation.
Give us some time to get refreshed and be better prepared to work hard on Packit&rsquo;s new features and bugs.</p>
<p>&ndash;</p>
<p>Have a wonderful year 2024 everyone! We&rsquo;re back.</p>
</description>
</item>
<item>
<title>[Resolved] GitLab outage</title>
<link>https://status.packit.dev/issues/2023-12-19-gitlab-outage/</link>
<pubDate>Tue, 19 Dec 2023 05:30:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-12-19-gitlab-outage/</guid>
<category>2023-12-20T12:00:00+01:00</category>
<description><p>Packit production instance has lost access to GitLab API.
This most likely affects also self-hosted GitLab forges.</p>
<p>The issue has been resolved and everything should work as expected.</p>
</description>
</item>
<item>
<title>[Resolved] Production instance firewall</title>
<link>https://status.packit.dev/issues/2023-12-10-prod-fw/</link>
<pubDate>Sun, 10 Dec 2023 20:45:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-12-10-prod-fw/</guid>
<category>2024-02-15T08:00:00+00:00</category>
<description><p>We have moved our production instance to another OpenShift cluster which may result in some jobs failing.
This issue should mainly affect jobs that involve syncing to the dist-git, namely:</p>
<ul>
<li><code>propose-downstream</code></li>
<li><code>pull-from-upstream</code></li>
</ul>
<p>In case you hit any issues when running <code>propose-downstream</code> or <code>pull-from-upstream</code>, please let us know.</p>
<h2 id="known-issues">Known Issues</h2>
<ul>
<li>none as of now (2023-12-11 17:00 UTC)</li>
</ul>
</description>
</item>
<item>
<title>[Resolved] Testing Farm outage</title>
<link>https://status.packit.dev/issues/2023-12-10-tf-outage/</link>
<pubDate>Sun, 10 Dec 2023 20:40:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-12-10-tf-outage/</guid>
<category>2023-12-11T12:00:00+01:00</category>
<description><p>Testing Farm provisioning is currently failing (due to failing DNS resolution). All runs created on the Testing Farm end with:</p>
<pre tabindex="0"><code>⚠ Guest couldn&#39;t be provisioned: Artemis resource ended in &#39;error&#39; state
</code></pre><p>In case it affects you, please retrigger the tests via <code>/packit test</code> comment command in the pull requests, <em>once the outage is resolved</em>.</p>
</description>
</item>
<item>
<title>[Resolved] Production move</title>
<link>https://status.packit.dev/issues/2023-12-10-mpp-move/</link>
<pubDate>Sun, 10 Dec 2023 20:15:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-12-10-mpp-move/</guid>
<category>2023-12-11T18:00:00+01:00</category>
<description><p><em>UPDATE #2</em>: No issues have been noticed so far.</p>
<p><em>UPDATE</em>: Production is deployed again. We are monitoring the deployment for any potential issues.</p>
<p>Our production deployment is being moved to a different cluster, you may experience outage for at most two hours.</p>
<p>In case you experience any issues, please retrigger the jobs manually via comment.</p>
</description>
</item>
<item>
<title>[Resolved] Copr builds stuck in pending or running state</title>
<link>https://status.packit.dev/issues/2023-12-06-copr-outage/</link>
<pubDate>Wed, 06 Dec 2023 12:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-12-06-copr-outage/</guid>
<category>2023-12-06T16:00:00+01:00</category>
<description><p>Copr builds could have been stuck in a pending or running state.
The issue has been resolved, it may take a while for the affected Copr builds to finish,
but there is no need to retrigger them.</p>
</description>
</item>
<item>
<title>[Resolved] Copr Upgrade</title>
<link>https://status.packit.dev/issues/2023-11-28-copr-upgrade/</link>
<pubDate>Tue, 28 Nov 2023 13:30:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2023-11-28-copr-upgrade/</guid>
<category>2023-11-28T16:45:00+00:00</category>
<description><p>Due to an <a href="https://pagure.io/fedora-infrastructure/issue/11648">upgrade</a> of the Fedora
Copr Servers, Copr builds might have been delayed or failing.</p>
</description>
</item>
<item>
<title>[Resolved] COPR builds failing for epel8</title>
<link>https://status.packit.dev/issues/2023-11-14-copr-outage-for-epel8/</link>
<pubDate>Tue, 14 Nov 2023 10:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-11-14-copr-outage-for-epel8/</guid>
<category>2023-11-14T17:15:00+01:00</category>
<description><p>Building on COPR for <em>epel8</em> chroot will be broken today for several hours.
Today is release day of RHEL 8.9 and everyone is seeing 404 not found error when trying to access
RHEL 8 repositories.</p>
</description>
</item>
<item>
<title>[Resolved] Production move</title>
<link>https://status.packit.dev/issues/2023-11-12-mpp-move/</link>
<pubDate>Sun, 12 Nov 2023 15:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-11-12-mpp-move/</guid>
<category>2023-11-12T17:15:00+01:00</category>
<description><p>Our production deployment is being moved to different cluster, you may experience outage for at most an hour.</p>
<p>In case you experience any issues, please retrigger the jobs manually via comment.</p>
<p><em>UPDATE</em>: Migration has been reverted due to issues with Fedora infra (authentication &amp; message bus).</p>
</description>
</item>
<item>
<title>[Resolved] GitHub outage</title>
<link>https://status.packit.dev/issues/2023-11-07-github-outage/</link>
<pubDate>Tue, 07 Nov 2023 14:45:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-11-07-github-outage/</guid>
<category>2023-11-07T15:30:00+01:00</category>
<description><p>There is an ongoing GitHub outage.
You can monitor the status and subscribe for updates here: <a href="https://www.githubstatus.com">https://www.githubstatus.com</a></p>
</description>
</item>
<item>
<title>[Resolved] GitLab.com outage</title>
<link>https://status.packit.dev/issues/2023-10-10-gitlab-outage/</link>
<pubDate>Tue, 10 Oct 2023 04:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-10-10-gitlab-outage/</guid>
<category>2023-10-11T14:00:00+02:00</category>
<description><p>GitLab.com workflows are disrupted due to the <a href="https://github.com/packit/packit/issues/2118">issue</a> with detecting the upstream/downstream repository in the current working directory.</p>
<p>Self-hosted GitLab forges are not affected.</p>
</description>
</item>
<item>
<title>[Resolved] Cluster upgrade</title>
<link>https://status.packit.dev/issues/2023-10-02-cluster-upgrade/</link>
<pubDate>Mon, 02 Oct 2023 08:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2023-10-02-cluster-upgrade/</guid>
<category>2023-10-02T10:00:00+00:00</category>
<description><p>A cluster upgrade is scheduled to start on Mon October 2nd at 08:00 UTC and last approximately 90 minutes.</p>
<p>We do not expect any significant disruption.</p>
<p>The started jobs might be executed with a delay
and if you think Packit does not react to your events,
try to retrigger the action via
<a href="https://packit.dev/docs/guide/#how-to-re-trigger-packit-actions-in-your-pull-request">comment command</a>.</p>
</description>
</item>
<item>
<title>[Resolved] COPR build failures</title>
<link>https://status.packit.dev/issues/2023-09-09-copr-outage/</link>
<pubDate>Sat, 09 Sep 2023 12:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2023-09-09-copr-outage/</guid>
<category>2023-09-11T15:00:00+00:00</category>
<description><p>Copr is experiencing issues with builds. We are sorry about that. You can follow the progress in the <a href="https://github.com/fedora-copr/copr/issues/2906">Copr issue</a>.</p>
<p>The failure in the COPR logs looks like the following: <code>Machine 5b8689e424334255ab9ace8a58343076 still running. Killing...</code></p>
<p>In case you are building in your own COPR project you can go to your project settings and change <code>Mock bootstrap</code> from default to <code>Enable</code> for a quick workaround.</p>
</description>
</item>
<item>
<title>[Resolved] Copr frontend instability</title>
<link>https://status.packit.dev/issues/2023-09-05-copr-outage/</link>
<pubDate>Tue, 05 Sep 2023 15:15:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-09-05-copr-outage/</guid>
<category>2023-04-05T15:00:00+00:00</category>
<description><p>Copr is experiencing issues with its <a href="https://github.com/fedora-copr/copr/issues/2897">frontend</a>
which is currently mitigated while Copr team investigates.</p>
<p>In case some of your builds were not submitted, please retrigger.</p>
</description>
</item>
<item>
<title>[Resolved] System upgrade scheduled</title>
<link>https://status.packit.dev/issues/2023-08-28-cluster-upgrade/</link>
<pubDate>Mon, 28 Aug 2023 10:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-08-28-cluster-upgrade/</guid>
<category>2023-08-28T11:45:00+02:00</category>
<description><p>A system upgrade was scheduled and lasted approximately 90 minutes.</p>
<p>The started jobs might&rsquo;ve been executed with a delay or dropped,
if you think Packit does not react to your events, try to retrigger
the action via
<a href="https://packit.dev/docs/guide/#how-to-re-trigger-packit-actions-in-your-pull-request">comment command</a>.</p>
</description>
</item>
<item>
<title>[Resolved] Testing Farm outage</title>
<link>https://status.packit.dev/issues/2023-08-24-tf-outage/</link>
<pubDate>Thu, 24 Aug 2023 15:40:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-08-24-tf-outage/</guid>
<category>2023-08-24T16:00:00+02:00</category>
<description><p>Testing Farm infrastructure had a small outage that caused few failing test runs.
In case it affected you, please retrigger the tests via <code>/packit test</code> comment command in the pull requests.</p>
</description>
</item>
<item>
<title>[Resolved] Packit outage now resolved</title>
<link>https://status.packit.dev/issues/2023-08-21-packit-outage/</link>
<pubDate>Mon, 21 Aug 2023 14:45:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-08-21-packit-outage/</guid>
<category>2023-08-21T15:15:00+02:00</category>
<description><p>There has been a Packit outage now resolved. If your jobs are stuck, please retrigger them.
We are sorry for the inconvenience.</p>
</description>
</item>
<item>
<title>[Resolved] Copr Upgrade</title>
<link>https://status.packit.dev/issues/2023-08-16-copr-upgrade/</link>
<pubDate>Wed, 16 Aug 2023 14:30:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-08-16-copr-upgrade/</guid>
<category>2023-08-16T16:30:00+02:00</category>
<description><p>There will be a Copr outage starting at</p>
<pre tabindex="0"><code>date --date &#34;2023-08-16 12:30 UTC&#34;
</code></pre><p>which will last approximately 2 hours. The build queue processing will be stopped. During the outage time, we expect a very short downtime for the DNF package storage (less than 10 minutes).</p>
<h2 id="reason-for-outage">Reason for outage:</h2>
<p>We will update the infrastructure machines to the latest packages that are currently being developed.</p>
<h2 id="affected-services">Affected Services:</h2>
<p><a href="https://copr.fedorainfracloud.org/">https://copr.fedorainfracloud.org/</a>
<a href="https://download.copr.fedorainfracloud.org/results/">https://download.copr.fedorainfracloud.org/results/</a></p>
<h2 id="upstream-ticket">Upstream ticket:</h2>
<p><a href="https://github.com/fedora-copr/copr/issues/2824">https://github.com/fedora-copr/copr/issues/2824</a></p>
<p>Please join #fedora-buildsys, #fedora-admin or #fedora-noc on irc.libera.chat
or add comments to this ticket.</p>
</description>
</item>
<item>
<title>[Resolved] Outage</title>
<link>https://status.packit.dev/issues/2023-08-15-outage/</link>
<pubDate>Tue, 15 Aug 2023 04:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-08-15-outage/</guid>
<category>2023-08-15T11:03:00+02:00</category>
<description><p>We are having an outage that started on Tuesday EU early morning. Jobs during this time could get stuck
in pending state.
This is caused by a failed database schema migration because of a lack of memory during the automatic deployment
of the new production images. We are working on the fix and apologize for the inconvenience.</p>
<p>Update: Migration is completed. You might need to retrigger the jobs (i.e. via comment).</p>
</description>
</item>
<item>
<title>[Resolved] Staging instance firewall</title>
<link>https://status.packit.dev/issues/2023-07-24-stage-fw/</link>
<pubDate>Mon, 24 Jul 2023 14:30:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-07-24-stage-fw/</guid>
<category>2023-12-10T20:00:00+01:00</category>
<description><p>We have moved our staging instance to another OpenShift cluster which may result in some jobs failing.
This issue should mainly affect jobs that involve syncing to the dist-git, namely:</p>
<ul>
<li><code>propose-downstream</code></li>
<li><code>pull-from-upstream</code></li>
</ul>
<p>In case you are using our staging instance and you hit any issues when running <code>propose-downstream</code> or <code>pull-from-upstream</code>, please let us know.</p>
<h2 id="known-issues">Known Issues</h2>
<ul>
<li><del>Testing Farm is currently not available on the staging instance.</del>
<em>Edit</em>: This issue has been fixed as of July 26th 10am.</li>
</ul>
</description>
</item>
<item>
<title>[Resolved] Testing Farm testing blocked</title>
<link>https://status.packit.dev/issues/2023-07-19-testing-farm-failing-on-rawhide/</link>
<pubDate>Wed, 19 Jul 2023 08:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2023-07-19-testing-farm-failing-on-rawhide/</guid>
<category>2023-07-19T11:00:00+00:00</category>
<description><p>Testing via Testing Farm is blocked: <a href="https://status.testing-farm.io/issues/2023-07-19-public-ranch-outage/">https://status.testing-farm.io/issues/2023-07-19-public-ranch-outage/</a>.</p>
<p>Testing Farm team is working on the fix (ETA 2 hours).</p>
</description>
</item>
<item>
<title>[Resolved] Guest couldn't be provisioned: Artemis resource ended in 'error' state</title>
<link>https://status.packit.dev/issues/2023-07-03-testing-provisioning-failed/</link>
<pubDate>Mon, 03 Jul 2023 08:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-07-03-testing-provisioning-failed/</guid>
<category>2023-07-03T10:00:00+00:00</category>
<description><p>Some jobs submitted by Packit to the Testing Farm are pending with this error:
<code>&quot;Guest couldn't be provisioned: Artemis resource ended in 'error' state&quot;</code>.</p>
<p>Testing Farm has already resolved the issue; please re-submit the job with a
comment like <code>/packit test</code> (more info on retriggering
<a href="https://packit.dev/docs/configuration/upstream/tests/#restart-testing">here</a>)
or through the GitHub checks button.</p>
</description>
</item>
<item>
<title>[Resolved] Fedora Rawhide Testing Blocked on dnf5</title>
<link>https://status.packit.dev/issues/2023-06-22-fedora-rawhide-testing-blocked-on-dnf5/</link>
<pubDate>Thu, 22 Jun 2023 09:30:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-06-22-fedora-rawhide-testing-blocked-on-dnf5/</guid>
<category>2023-07-18T20:30:00+02:00</category>
<description><p>dnf has been upgraded to dnf5 in Rawhide, resulting in various issues
when running tests in Testing Farm.</p>
<p>The Testing Farm team together with dnf5 team is working on fixing the issues
and trying to resolve the situation ASAP.</p>
<p>If you want to help, here are upstream issues related to this problem:</p>
<ul>
<li><a href="https://github.com/rpm-software-management/dnf5/issues/549">https://github.com/rpm-software-management/dnf5/issues/549</a></li>
<li><a href="https://github.com/rpm-software-management/dnf5/issues/168">https://github.com/rpm-software-management/dnf5/issues/168</a></li>
</ul>
</description>
</item>
<item>
<title>[Resolved] Upgrade of Copr servers</title>
<link>https://status.packit.dev/issues/2023-05-25-copr-upgrade/</link>
<pubDate>Thu, 25 May 2023 10:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2023-05-25-copr-upgrade/</guid>
<category>2023-05-25T13:00:00+00:00</category>
<description><p>Due to an <a href="https://pagure.io/fedora-infrastructure/issue/11332">upgrade</a> of the Fedora
Copr Servers, Copr builds might be delayed or failing. The upgrade should last approximately 3 hours.</p>
</description>
</item>
<item>
<title>[Resolved] GitHub outage</title>
<link>https://status.packit.dev/issues/2023-05-11-github-outage/</link>
<pubDate>Thu, 11 May 2023 15:30:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-05-11-github-outage/</guid>
<category>2023-05-11T21:00:00+02:00</category>
<description><p>There is an ongoing GitHub outage.
You can monitor the status and subscribe for updates here: <a href="https://www.githubstatus.com">https://www.githubstatus.com</a></p>
<p>EDIT: <a href="https://github.blog/2023-05-16-addressing-githubs-recent-availability-issues">GitHub&rsquo;s post mortem</a></p>
</description>
</item>
<item>
<title>[Resolved] Testing Farm errors</title>
<link>https://status.packit.dev/issues/2023-05-11-tf-merge-issue/</link>
<pubDate>Wed, 10 May 2023 14:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-05-11-tf-merge-issue/</guid>
<category>2023-05-11T15:00:00+02:00</category>
<description><p>After the deployment of the new version of Testing Farm, you may have encountered Testing Farm runs that
fail with the status <code>Failed to checkout ref {sha}</code>. Together with the Testing Farm team, we are working on a fix.</p>
</description>
</item>
<item>
<title>[Resolved] GitHub outage</title>
<link>https://status.packit.dev/issues/2023-05-09-github-outage/</link>
<pubDate>Tue, 09 May 2023 13:50:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-05-09-github-outage/</guid>
<category>2023-05-09T23:15:00+02:00</category>
<description><p>There is an ongoing GitHub outage.
You can monitor the status and subscribe for updates here: <a href="https://www.githubstatus.com">https://www.githubstatus.com</a></p>
</description>
</item>
<item>
<title>[Resolved] Bodhi Updates not created</title>
<link>https://status.packit.dev/issues/2023-05-05-bodhi-updates/</link>
<pubDate>Thu, 04 May 2023 11:30:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-05-05-bodhi-updates/</guid>
<category>2023-05-10T16:00:00+02:00</category>
<description><p>We&rsquo;re experiencing issues with creating Bodhi updates due to failing authentication.</p>
<p>You can try to retrigger an update by a comment in a dist-git pull request:</p>
<pre><code>/packit create-update
</code></pre>
</description>
</item>
<item>
<title>[Resolved] Cluster Update</title>
<link>https://status.packit.dev/issues/2023-05-03-cluster-update/</link>
<pubDate>Wed, 03 May 2023 10:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-05-03-cluster-update/</guid>
<category>2023-05-03T11:15:00+02:00</category>
<description><p>The OpenShift cluster is currently updating from 4.11.28 to 4.12.13</p>
</description>
</item>
<item>
<title>[Resolved] Scheduled DB Cleanup</title>
<link>https://status.packit.dev/issues/2023-04-26-scheduled-db-cleanup/</link>
<pubDate>Wed, 26 Apr 2023 04:40:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2023-04-26-scheduled-db-cleanup/</guid>
<category>2023-04-26T05:17:00+00:00</category>
<description><p>We are running a DB maintenance in order to clean up old pipelines. We expect
API performance to improve as a result of this.</p>
<p>The maintenance window is planned for an hour, the actual clean up activities
will last approximately 20 minutes. Users might experience degraded
performance of the service and dashboard during this time.</p>
</description>
</item>
<item>
<title>[Resolved] Issue with pushing to dist-git</title>
<link>https://status.packit.dev/issues/2023-04-12-push-to-distgit-issue/</link>
<pubDate>Tue, 11 Apr 2023 18:28:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2023-04-12-push-to-distgit-issue/</guid>
<category>2023-04-12T16:30:00+02:00</category>
<description><p>Due to <a href="https://docs.pagure.org/rpkg/releases/1.66.html#checking-a-repo-configuration-before-git-push-with-a-git-hook-script">a new pre-push hook</a>
being applied in dist-git, we are unable to create pull-requests
from fork as part of <code>propose-downstream</code> and <code>pull-from-upstream</code> jobs.</p>
<p>We are sorry about that and are working on a way how to resolve this.</p>
</description>
</item>
<item>
<title>[Resolved] Upgrade of Copr servers</title>
<link>https://status.packit.dev/issues/2023-04-05-copr-outage/</link>
<pubDate>Wed, 05 Apr 2023 12:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2023-04-05-copr-outage/</guid>
<category>2023-04-05T15:00:00+00:00</category>
<description><p>Due to an <a href="https://pagure.io/fedora-infrastructure/issue/11201">upgrade</a> of the Fedora
Copr Servers, Copr builds might be delayed or failing. The upgrade should last approximately 3 hours.</p>
</description>
</item>
<item>
<title>[Resolved] SLO1 Error Budget issues</title>
<link>https://status.packit.dev/issues/2023-03-09-slo1-error-budget/</link>
<pubDate>Thu, 09 Mar 2023 10:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-03-09-slo1-error-budget/</guid>
<category>2023-06-08T10:00:00+01:00</category>
<description><p>We are having <a href="https://packit.dev/docs/service-level-objectives/">SLO1</a> error budget issues.</p>
<p>These are mostly caused by performance issues, we are working on them and prioritizing more improvements (see <a href="https://github.com/packit/packit-service/issues/1954">https://github.com/packit/packit-service/issues/1954</a> ).</p>
<p>We are sorry for any slowness you can experience.</p>
</description>
</item>
<item>
<title>[Resolved] Running grouping migrations</title>
<link>https://status.packit.dev/issues/2023-02-14-running-grouping-migrations/</link>
<pubDate>Tue, 14 Feb 2023 02:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-02-14-running-grouping-migrations/</guid>
<category>2023-02-14T04:00:00+01:00</category>
<description><p>We are updating our database schema to facilitate further development.
As a part of this process, multiple database migrations will have to
be run. The first step is grouping together related builds and test
runs. The migrations will happen during the next deployment to production,
on Tuesday February 14 at 2:00AM CET. This set of migrations is expected to
take roughly 40 minutes, after which the service should come back up.</p>
<p>Since significant refactoring was paired with these changes, there may
be some bugs/regressions that we did not spot on staging. Please,
contact us via the usual means if you spot anything suspicious.</p>
</description>
</item>
<item>
<title>[Resolved] SLO2 Error Budget Depleted in a Day</title>
<link>https://status.packit.dev/issues/2023-02-17-slo2-error-budget-depleted-in-a-day/</link>
<pubDate>Tue, 31 Jan 2023 10:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-02-17-slo2-error-budget-depleted-in-a-day/</guid>
<category>2023-02-01T10:00:00+01:00</category>
<description><p>The SLO2 error budget dropped from 85% all the way down to zero in one day.
<img src="https://status.packit.dev/images/SLO2-error-budget-depleted.png" alt="SLO2"></p>
<p>The likely cause was that the fedora-messaging consumer was stuck, so we
were not getting messages from Copr about finished SRPM builds.
Luckily, the babysit tasks proved to be very useful and caught those later.</p>
<p>We&rsquo;ve <a href="https://github.com/packit/packit-service-fedmsg/pull/76">added a liveness probe to the messaging consumer</a>
to prevent this from happening again.</p>
</description>
</item>
<item>
<title>[Resolved] Testing Farm outage</title>
<link>https://status.packit.dev/issues/2023-01-24-tf-outage/</link>
<pubDate>Tue, 24 Jan 2023 15:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-01-24-tf-outage/</guid>
<category>2023-01-25T10:00:00+01:00</category>
<description><p>Testing Farm infrastructure had an <a href="https://status.testing-farm.io/issues/2023-01-24-public-ranch-outage/">outage</a>
which caused the status of the test runs to be stuck in the <code>queued</code> state.
This is now resolved and tests can be retriggered by <code>/packit test</code> comment command in the pull requests.</p>
</description>
</item>
<item>
<title>[Resolved] SRPM builds stuck in Submitted state</title>
<link>https://status.packit.dev/issues/2023-01-21-srpm-builds-stuck-in-submitted-state/</link>
<pubDate>Fri, 20 Jan 2023 21:19:06 +0100</pubDate>
<guid>https://status.packit.dev/issues/2023-01-21-srpm-builds-stuck-in-submitted-state/</guid>
<category>2023-01-21T9:51:30+01:00</category>
<description><p>Workers for processing long-running tasks got stuck on Friday evening
with to most visible consequence being the SRPM builds stuck in &lsquo;Submitted&rsquo; state.</p>
<p>The workers were restarted on Sat morning and all SRPMs were sent to Copr
to build and the jobs pipelines were processed.</p>
<p><a href="https://github.com/packit/packit-service/issues/1858">The cause is not known at the time of resolving the issue.</a></p>
</description>
</item>
<item>
<title>[Resolved] System upgrade scheduled</title>
<link>https://status.packit.dev/issues/2023-01-06-cluster-upgrade/</link>
<pubDate>Fri, 06 Jan 2023 10:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2023-01-06-cluster-upgrade/</guid>
<category>2023-01-06T22:00:00+00:00</category>
<description><p>A system upgrade is scheduled to start on Fri Jan 06 20:00 UTC and last approximately 90 minutes.</p>
<p>We do not expect any significant disruption.</p>
<p>The started jobs might be executed with a delay
and if you think Packit does not react to your events,
try to retrigger the action via
<a href="https://packit.dev/docs/guide/#how-to-re-trigger-packit-actions-in-your-pull-request">comment command</a>.</p>
</description>
</item>
<item>
<title>[Resolved] Christmas is here 🎄</title>
<link>https://status.packit.dev/issues/2022-12-23-christmas-2022/</link>
<pubDate>Fri, 23 Dec 2022 18:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2022-12-23-christmas-2022/</guid>
<category>2023-01-02T08:00:00+00:00</category>
<description><p>All the team is on vacation.
Give us some time to get refreshed and be better prepared to work hard on Packit&rsquo;s new features and bugs.</p>
<p>The Packit staging instance (<a href="https://dashboard.stg.packit.dev/">https://dashboard.stg.packit.dev/</a>) will not run during this week.
It will be back on the 2nd of January.</p>
<p>&ndash;</p>
<p>Have a wonderful year 2023 everyone! We&rsquo;re back, staging instance is up and serving.</p>
</description>
</item>
<item>
<title>[Resolved] Upgrade of Copr Servers</title>
<link>https://status.packit.dev/issues/2022-11-28-copr-outage/</link>
<pubDate>Mon, 28 Nov 2022 16:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2022-11-28-copr-outage/</guid>
<category>2022-11-28T21:00:00+01:00</category>
<description><p>Due to an <a href="https://pagure.io/fedora-infrastructure/issue/11011">upgrade</a> of the Fedora
Copr Servers, Copr builds might have been failing.</p>
</description>
</item>
<item>
<title>[Resolved] Staging is unstable</title>
<link>https://status.packit.dev/issues/2022-11-28-staging-unstable/</link>
<pubDate>Fri, 25 Nov 2022 08:35:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2022-11-28-staging-unstable/</guid>
<category>2022-11-30T14:06:00+01:00</category>
<description><p>Since the last cluster update, we&rsquo;ve been running our staging instance
on a separate node pool which uses <a href="https://aws.amazon.com/ec2/spot">AWS Spot instances</a>.
It causes the staging instance to be quite unreliable.
We&rsquo;re testing it in order to find balance between price and usefulness.</p>
</description>
</item>
<item>
<title>[Resolved] Outage</title>
<link>https://status.packit.dev/issues/2022-11-25-outage/</link>
<pubDate>Thu, 24 Nov 2022 23:24:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2022-11-25-outage/</guid>
<category>2022-11-25T08:35:00+01:00</category>
<description><p>We are having resource issues in our cluster and particular parts of the deployment can be down.</p>
<p>Updates:</p>
<ul>
<li><code>2022-11-25T08:35:00+01:00</code>: Stage instance has been scaled down so our production instance has more resources.
Production instance should be fine now. We are investigating more.</li>
</ul>
</description>
</item>
<item>
<title>[Resolved] System upgrade scheduled</title>
<link>https://status.packit.dev/issues/2022-11-24-cluster-upgrade/</link>
<pubDate>Thu, 24 Nov 2022 19:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2022-11-24-cluster-upgrade/</guid>
<category>2022-11-24T23:00:00+00:00</category>
<description><p>A system upgrade is scheduled to start on Thu Nov 24 21:00 UTC and last approximately 90 minutes.</p>
<p>We do not expect any significant disruption.</p>
<p>The started jobs might be executed with a delay
and if you think Packit does not react to your events,
try to retrigger the action via
<a href="https://packit.dev/docs/guide/#how-to-re-trigger-packit-actions-in-your-pull-request">comment command</a>.</p>
</description>
</item>
<item>
<title>[Resolved] Copr builds and tests on commits and releases ignored</title>
<link>https://status.packit.dev/issues/2022-11-01-commit-release-trigger/</link>
<pubDate>Tue, 01 Nov 2022 03:00:00 +0100</pubDate>
<guid>https://status.packit.dev/issues/2022-11-01-commit-release-trigger/</guid>
<category>2022-11-02T10:30:00+01:00</category>
<description><p>There was a bug introduced with Tuesday&rsquo;s production update causing Copr builds and tests
for <code>commit</code> and <code>release</code> triggers were not executed.</p>
</description>
</item>
<item>
<title>[Resolved] Copr storage move</title>
<link>https://status.packit.dev/issues/2022-10-28-30-copr-storage-move/</link>
<pubDate>Fri, 28 Oct 2022 21:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2022-10-28-30-copr-storage-move/</guid>
<category>2022-10-30T08:00:00+02:00</category>
<description><p>Copr team is performing a backend storage move over the weekend of Oct 28-30th.
Building in Copr will be disrupted or unavailable during this period.</p>
<p>For more info, please follow the <a href="https://lists.fedoraproject.org/archives/list/[email protected]/thread/TRNW5JVCFIQJDUCND4KZWZVM7XVCYLVL/">Copr outage announcement</a>.</p>
<p>Update: the upgrade was successful and Copr is fully operational.</p>
</description>
</item>
<item>
<title>[Resolved] System upgrade scheduled</title>
<link>https://status.packit.dev/issues/2022-10-13-cluster-upgrade/</link>
<pubDate>Thu, 13 Oct 2022 19:00:00 +0000</pubDate>
<guid>https://status.packit.dev/issues/2022-10-13-cluster-upgrade/</guid>
<category>2022-10-13T20:37:00+00:00</category>
<description><p>A system upgrade is scheduled to start on Wed Oct 13 19:00 UTC and last approximately 90 minutes.</p>
<p>We do not expect any significant disruption.</p>
<p>The started jobs might be executed with a delay
and if you think Packit does not react to your events,
try to retrigger the action via
<a href="https://packit.dev/docs/guide/#how-to-re-trigger-packit-actions-in-your-pull-request">comment command</a>.</p>
</description>
</item>
<item>
<title>[Resolved] Issues with the task execution</title>
<link>https://status.packit.dev/issues/2022-10-11-outage/</link>
<pubDate>Tue, 11 Oct 2022 13:57:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2022-10-11-outage/</guid>
<category>2022-10-11T15:12:00+02:00</category>
<description><p>We are experiencing issues with the execution of the tasks.
(The statuses are waiting in the <code>The task was accepted.</code> state.)
We are investigating the cause.
Sorry about the possible troubles.
We will try to fix this as soon as possible.</p>
<p>Updates:</p>
<ul>
<li>Tue Oct 11 12:24:02 UTC: We are slowly going through the queue. Please, be patient.</li>
<li>Tue Oct 11 13:12:36 UTC: We have gone through the queue and you should experience regular response times.
The original cause is still not known but the problem probably occured during an SRPM upload to Copr.
(It can be a fault on our or Copr side.)</li>
<li>Wed Oct 12 05:27:46 UTC: Service operated normally since the last update.
To reduce the chance of this, we <a href="https://packit.dev/posts/copr-srpms/">plan to move the building of SRPMs to Copr</a>.
(Currently default for new installations and opt in for other projects.)</li>
</ul>
</description>
</item>
<item>
<title>[Resolved] Internal Testing Farm infrastructure is having an outage</title>
<link>https://status.packit.dev/issues/2022-10-10-outage/</link>
<pubDate>Mon, 10 Oct 2022 15:14:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2022-10-10-outage/</guid>
<category>2022-10-11T21:34:00+02:00</category>
<description><p>Due to a wide outage in Red Hat internal infrastructure the Red Hat Ranch (=internal ranch) is disabled in the Testing Farm (=our test runner).
Currently there is no ETA for resolving the problem.
Follow the progress on the Testing Farm status page: <a href="https://status.testing-farm.io/issues/2022-10-10-redhat-ranch/">https://status.testing-farm.io/issues/2022-10-10-redhat-ranch/</a></p>
</description>
</item>
<item>
<title>[Resolved] GitHub Webhooks not working</title>
<link>https://status.packit.dev/issues/2022-10-05-github-webhooks-degraded-status/</link>
<pubDate>Wed, 05 Oct 2022 16:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2022-10-05-github-webhooks-degraded-status/</guid>
<category>2022-10-05T18:00:00+02:00</category>
<description><p>Packit is not working on GitHub because the GitHub Webhooks status is &lsquo;degraded&rsquo;.
See yourself: <a href="https://www.githubstatus.com/incidents/smn1qtqvbsb6">https://www.githubstatus.com/incidents/smn1qtqvbsb6</a></p>
</description>
</item>
<item>
<title>[Resolved] September 22th outage</title>
<link>https://status.packit.dev/issues/2022-09-22-outage/</link>
<pubDate>Thu, 22 Sep 2022 08:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2022-09-22-outage/</guid>
<category>2022-09-23T08:00:00+02:00</category>
<description><p>Testing Farm is failing to run tests submitted by Packit which use <code>Copr</code> builds.
Tests with the <code>skip_build</code> flag are not be affected by this issue.
We are working together with the Testing Farm team to fix this as soon as possible.</p>
</description>
</item>
<item>
<title>[Resolved] 3/4 of SLO1 Error Budget consumed in 6 weeks</title>
<link>https://status.packit.dev/issues/2022-10-27-slo1-error-budget-drop-postmortem/</link>
<pubDate>Thu, 01 Sep 2022 01:00:00 +0200</pubDate>
<guid>https://status.packit.dev/issues/2022-10-27-slo1-error-budget-drop-postmortem/</guid>
<category>2022-10-12T01:00:00+02:00</category>
<description><p>(Mostly for our internal use since the source data are not publicly available.)</p>
<p>During the 6 weeks since the beginning of September the <a href="https://packit.dev/docs/service-level-objectives/#slo1-changes-to-github-prs-receive-a-status-update-within-15-seconds-in-99-of-cases">SLO1</a>