-
Notifications
You must be signed in to change notification settings - Fork 50
/
rdo.yml
2849 lines (2847 loc) · 80 KB
/
rdo.yml
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
import:
- tags.yml
releases:
- name: epoxy
status: development
branch: rpm-master
identifier: "2025.1"
upstream_branch: "master"
tags_map: separated_buildreqs
repos:
- name: el9s
buildsys: cbs/cloud9s-openstack-epoxy-el9s
buildsys-tags:
- cloud9s-openstack-epoxy-el9s-build
- cloud9s-openstack-epoxy-candidate
- cloud9s-openstack-epoxy-testing
distrepos:
- name: RDO Caracal el9s
url: http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-epoxy/
- name: CentOS Stream 9 BaseOS
url: http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/
- name: CentOS Stream 9 AppStream
url: http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/
- name: CentOS Stream 9 HighAvailability
url: http://mirror.stream.centos.org/9-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 9 CRB
- name: el10s
buildsys: cbs/cloud10s-openstack-epoxy-el10s
buildsys-tags:
- cloud10s-openstack-epoxy-el10s-build
- cloud10s-openstack-epoxy-candidate
- cloud10s-openstack-epoxy-testing
distrepos:
- name: RDO Caracal el10s
url: http://mirror.stream.centos.org/SIGs/10-stream/cloud/x86_64/openstack-epoxy/
- name: CentOS Stream 10 BaseOS
url: http://mirror.stream.centos.org/10-stream/BaseOS/x86_64/os/
- name: CentOS Stream 10 AppStream
url: http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/
- name: CentOS Stream 10 HighAvailability
url: http://mirror.stream.centos.org/10-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 10 CRB
- name: dalmatian
status: maintained
branch: dalmatian-rdo
identifier: "2024.2"
upstream_branch: "stable/2024.2"
tags_map: separated_buildreqs
repos:
- name: el9s
buildsys: cbs/cloud9s-openstack-dalmatian-el9s
buildsys-tags:
- cloud9s-openstack-dalmatian-el9s-build
- cloud9s-openstack-dalmatian-candidate
- cloud9s-openstack-dalmatian-testing
- cloud9s-openstack-dalmatian-release
distrepos:
- name: RDO Caracal el9s
url: http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-dalmatian/
- name: CentOS Stream 9 BaseOS
url: http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/
- name: CentOS Stream 9 AppStream
url: http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/
- name: CentOS Stream 9 HighAvailability
url: http://mirror.stream.centos.org/9-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 9 CRB
- name: caracal
status: maintained
branch: rpm-master
identifier: "2024.1"
upstream_branch: "stable/2024.1"
tags_map: separated_buildreqs
repos:
- name: el9s
buildsys: cbs/cloud9s-openstack-caracal-el9s
buildsys-tags:
- cloud9s-openstack-caracal-el9s-build
- cloud9s-openstack-caracal-candidate
- cloud9s-openstack-caracal-testing
- cloud9s-openstack-caracal-release
distrepos:
- name: RDO Caracal el9s
url: http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-caracal/
- name: CentOS Stream 9 BaseOS
url: http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/
- name: CentOS Stream 9 AppStream
url: http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/
- name: CentOS Stream 9 HighAvailability
url: http://mirror.stream.centos.org/9-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 9 CRB
- name: bobcat
status: maintained
branch: rpm-master
identifier: "2023.2"
upstream_branch: "stable/2023.2"
tags_map: separated_buildreqs
repos:
- name: el9s
buildsys: cbs/cloud9s-openstack-bobcat-el9s
buildsys-tags:
- cloud9s-openstack-bobcat-el9s-build
- cloud9s-openstack-bobcat-candidate
- cloud9s-openstack-bobcat-testing
- cloud9s-openstack-bobcat-release
distrepos:
- name: RDO Bobcat el9s
url: http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-bobcat/
- name: CentOS Stream 9 BaseOS
url: http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/
- name: CentOS Stream 9 AppStream
url: http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/
- name: CentOS Stream 9 HighAvailability
url: http://mirror.stream.centos.org/9-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 9 CRB
- name: antelope
status: maintained
branch: rpm-master
identifier: "2023.1"
upstream_branch: "stable/2023.1"
tags_map: separated_buildreqs
repos:
- name: el9s
buildsys: cbs/cloud9s-openstack-antelope-el9s
buildsys-tags:
- cloud9s-openstack-antelope-el9s-build
- cloud9s-openstack-antelope-candidate
- cloud9s-openstack-antelope-testing
- cloud9s-openstack-antelope-release
distrepos:
- name: RDO Zed el9s
url: http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-antelope/
- name: CentOS Stream 9 BaseOS
url: http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/
- name: CentOS Stream 9 AppStream
url: http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/
- name: CentOS Stream 9 HighAvailability
url: http://mirror.stream.centos.org/9-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 9 CRB
- name: zed
status: maintained
branch: rpm-master
upstream_branch: "unmaintained/zed"
tags_map: separated_buildreqs
repos:
- name: el9s
buildsys: cbs/cloud9s-openstack-zed-el9s
buildsys-tags:
- cloud9s-openstack-zed-el9s-build
- cloud9s-openstack-zed-candidate
- cloud9s-openstack-zed-testing
- cloud9s-openstack-zed-release
distrepos:
- name: RDO Zed el9s
url: http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-zed/
- name: CentOS Stream 9 BaseOS
url: http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/
- name: CentOS Stream 9 AppStream
url: http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/
- name: CentOS Stream 9 HighAvailability
url: http://mirror.stream.centos.org/9-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 9 CRB
url: http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/
- name: yoga
status: extended_maintenance
branch: rpm-master
upstream_branch: "unmaintained/yoga"
tags_map: separated_buildreqs
repos:
- name: el8s
buildsys: cbs/cloud8s-openstack-yoga-el8
buildsys-tags:
- cloud8s-openstack-yoga-el8-build
- cloud8s-openstack-yoga-candidate
- cloud8s-openstack-yoga-testing
- cloud8s-openstack-yoga-release
distrepos:
- name: RDO Yoga el8s
url: http://mirror.centos.org/centos/8-stream/cloud/x86_64/openstack-yoga/
- name: CentOS Stream 8 BaseOS
url: http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/
- name: CentOS Stream 8 AppStream
url: http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/
- name: CentOS Stream 8 HighAvailability
url: http://mirror.centos.org/centos/8-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 8 PowerTools
url: http://mirror.centos.org/centos/8-stream/PowerTools/x86_64/os/
- name: el9s
buildsys: cbs/cloud9s-openstack-yoga-el9s
buildsys-tags:
- cloud9s-openstack-yoga-el9s-build
- cloud9s-openstack-yoga-candidate
- cloud9s-openstack-yoga-testing
- cloud9s-openstack-yoga-release
distrepos:
- name: RDO Yoga el9s
url: http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-yoga/
- name: CentOS Stream 9 BaseOS
url: http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/
- name: CentOS Stream 9 AppStream
url: http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/
- name: CentOS Stream 9 HighAvailability
url: http://mirror.stream.centos.org/9-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 9 CRB
url: http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/
- name: xena
status: extended_maintenance
branch: rpm-master
upstream_branch: "stable/xena"
tags_map: separated_buildreqs
repos:
- name: el8s
buildsys: cbs/cloud8s-openstack-xena-el8
buildsys-tags:
- cloud8s-openstack-xena-el8-build
- cloud8s-openstack-xena-candidate
- cloud8s-openstack-xena-testing
- cloud8s-openstack-xena-release
distrepos:
- name: RDO Xena el8s
url: http://mirror.centos.org/centos/8-stream/cloud/x86_64/openstack-xena/
- name: CentOS Stream 8 BaseOS
url: http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/
- name: CentOS Stream 8 AppStream
url: http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/
- name: CentOS Stream 8 HighAvailability
url: http://mirror.centos.org/centos/8-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 8 PowerTools
url: http://mirror.centos.org/centos/8-stream/PowerTools/x86_64/os/
- name: el9s
buildsys: cbs/cloud9s-openstack-xena-el9s
buildsys-tags:
- cloud9s-openstack-xena-el9s-build
- cloud9s-openstack-xena-candidate
- cloud9s-openstack-xena-testing
distrepos:
- name: RDO Xena el9s
url: http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-xena/
- name: CentOS Stream 9 BaseOS
url: http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/
- name: CentOS Stream 9 AppStream
url: http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/
- name: CentOS Stream 9 HighAvailability
url: http://mirror.stream.centos.org/9-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 9 CRB
url: http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/
- name: wallaby
status: extended_maintenance
branch: rpm-master
upstream_branch: "stable/wallaby"
tags_map: separated_buildreqs
repos:
- name: el8
buildsys: cbs/cloud8-openstack-wallaby-el8
buildsys-tags:
- cloud8-openstack-wallaby-el8-build
- cloud8-openstack-wallaby-candidate
- cloud8-openstack-wallaby-testing
distrepos:
- name: RDO Wallaby el8
url: http://mirror.centos.org/centos/8/cloud/x86_64/openstack-wallaby/
- name: CentOS 8 BaseOS
url: http://mirror.centos.org/centos/8/BaseOS/x86_64/os/
- name: CentOS 8 AppStreams
url: http://mirror.centos.org/centos/8/AppStream/x86_64/os/
- name: CentOS 8 HighAvailability
url: http://mirror.centos.org/centos/8/HighAvailability/x86_64/os/
- name: CentOS 8 PowerTools
url: http://mirror.centos.org/centos/8/PowerTools/x86_64/os/
- name: el8s
buildsys: cbs/cloud8s-openstack-wallaby-el8
buildsys-tags:
- cloud8s-openstack-wallaby-el8-build
- cloud8s-openstack-wallaby-candidate
- cloud8s-openstack-wallaby-testing
- cloud8s-openstack-wallaby-release
distrepos:
- name: RDO Wallaby el8s
url: http://mirror.centos.org/centos/8-stream/cloud/x86_64/openstack-wallaby/
- name: CentOS Stream 8 BaseOS
url: http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/
- name: CentOS Stream 8 AppStream
url: http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/
- name: CentOS Stream 8 HighAvailability
url: http://mirror.centos.org/centos/8-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 8 PowerTools
url: http://mirror.centos.org/centos/8-stream/PowerTools/x86_64/os/
- name: el9s
buildsys: cbs/cloud9s-openstack-wallaby
buildsys-tags:
- cloud9s-openstack-wallaby-el9s-build
- cloud9s-openstack-wallaby-candidate
- cloud9s-openstack-wallaby-testing
distrepos:
- name: RDO Wallaby el9s
url: http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-xena/
- name: CentOS Stream 9 BaseOS
url: http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/
- name: CentOS Stream 9 AppStream
url: http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/
- name: CentOS Stream 9 HighAvailability
url: http://mirror.stream.centos.org/9-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 9 CRB
url: http://mirror.stream.centos.org/9-stream/CRB/x86_64/os/
- name: victoria
status: eol
branch: rpm-master
upstream_branch: "stable/victoria"
tags_map: separated_buildreqs
repos:
- name: el8
buildsys: cbs/cloud8-openstack-victoria-el8
buildsys-tags:
- cloud8-openstack-victoria-el8-build
- cloud8s-openstack-victoria-candidate
- cloud8-openstack-victoria-testing
- cloud8-openstack-victoria-release
- cloud8-openstack-victoria-candidate
distrepos:
- name: RDO Victoria el8
url: http://mirror.centos.org/centos/8/cloud/x86_64/openstack-victoria/
- name: CentOS 8 BaseOS
url: http://mirror.centos.org/centos/8/BaseOS/x86_64/os/
- name: CentOS 8 AppStreams
url: http://mirror.centos.org/centos/8/AppStream/x86_64/os/
- name: CentOS 8 HighAvailability
url: http://mirror.centos.org/centos/8/HighAvailability/x86_64/os/
- name: CentOS 8 PowerTools
url: http://mirror.centos.org/centos/8/PowerTools/x86_64/os/
- name: el8s
buildsys: cbs/cloud8s-openstack-victoria-el8
buildsys-tags:
- cloud8s-openstack-victoria-el8-build
- cloud8s-openstack-victoria-candidate
- cloud8s-openstack-victoria-testing
- cloud8s-openstack-victoria-release
distrepos:
- name: RDO Victoria el8s
url: http://mirror.centos.org/centos/8-stream/cloud/x86_64/openstack-victoria/
- name: CentOS Stream 8 BaseOS
url: http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/
- name: CentOS Stream 8 AppStream
url: http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/
- name: CentOS Stream 8 HighAvailability
url: http://mirror.centos.org/centos/8-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 8 PowerTools
url: http://mirror.centos.org/centos/8-stream/PowerTools/x86_64/os/
- name: ussuri
status: eol
branch: rpm-master
tags_map: separated_buildreqs
repos:
- name: el8
buildsys: cbs/cloud8-openstack-ussuri-el8
buildsys-tags:
- cloud8-openstack-ussuri-el8-build
- cloud8s-openstack-ussuri-candidate
- cloud8-openstack-ussuri-testing
- cloud8-openstack-ussuri-release
- cloud8-openstack-ussuri-candidate
distrepos:
- name: RDO Ussuri el8
url: http://mirror.centos.org/centos/8/cloud/x86_64/openstack-ussuri/
- name: CentOS 8 BaseOS
url: http://mirror.centos.org/centos/8/BaseOS/x86_64/os/
- name: CentOS 8 AppStreams
url: http://mirror.centos.org/centos/8/AppStream/x86_64/os/
- name: CentOS 8 HighAvailability
url: http://mirror.centos.org/centos/8/HighAvailability/x86_64/os/
- name: CentOS 8 PowerTools
url: http://mirror.centos.org/centos/8/PowerTools/x86_64/os/
- name: el8s
buildsys: cbs/cloud8s-openstack-ussuri-el8
buildsys-tags:
- cloud8s-openstack-ussuri-el8-build
- cloud8s-openstack-ussuri-candidate
- cloud8s-openstack-ussuri-testing
- cloud8s-openstack-ussuri-release
distrepos:
- name: RDO Ussuri el8s
url: http://mirror.centos.org/centos/8-stream/cloud/x86_64/openstack-ussuri/
- name: CentOS Stream 8 BaseOS
url: http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/
- name: CentOS Stream 8 AppStream
url: http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/
- name: CentOS Stream 8 HighAvailability
url: http://mirror.centos.org/centos/8-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 8 PowerTools
url: http://mirror.centos.org/centos/8-stream/PowerTools/x86_64/os/
- name: train
status: eol
branch: rpm-master
tags_map: separated_buildreqs
repos:
- name: el7
buildsys: cbs/cloud7-openstack-train-el7
buildsys-tags:
- cloud7-openstack-train-el7-build
- cloud7-openstack-train-candidate
- cloud7-openstack-train-testing
- cloud7-openstack-train-release
distrepos:
- name: RDO Train el7
url: http://mirror.centos.org/centos/7/cloud/x86_64/openstack-train/
- name: CentOS 7 Base
url: http://mirror.centos.org/centos/7/os/x86_64/
- name: CentOS 7 Updates
url: http://mirror.centos.org/centos/7/updates/x86_64/
- name: CentOS 7 Extras
- name: el8
buildsys: cbs/cloud8-openstack-train-el8
buildsys-tags:
- cloud8-openstack-train-el8-build
- cloud8s-openstack-train-candidate
- cloud8-openstack-train-testing
- cloud8-openstack-train-release
- cloud8-openstack-train-candidate
distrepos:
- name: RDO Train el8
url: http://mirror.centos.org/centos/8/cloud/x86_64/openstack-train/
- name: CentOS 8 BaseOS
url: http://mirror.centos.org/centos/8/BaseOS/x86_64/os/
- name: CentOS 8 AppStreams
url: http://mirror.centos.org/centos/8/AppStream/x86_64/os/
- name: CentOS 8 HighAvailability
url: http://mirror.centos.org/centos/8/HighAvailability/x86_64/os/
- name: CentOS 8 PowerTools
url: http://mirror.centos.org/centos/8/PowerTools/x86_64/
- name: el8s
buildsys: cbs/cloud8s-openstack-train-el8
buildsys-tags:
- cloud8s-openstack-train-el8-build
- cloud8s-openstack-train-candidate
- cloud8s-openstack-train-testing
distrepos:
- name: RDO Train el8s
url: http://mirror.centos.org/centos/8-stream/cloud/x86_64/openstack-train/
- name: CentOS Stream 8 BaseOS
url: http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/
- name: CentOS Stream 8 AppStream
url: http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/
- name: CentOS Stream 8 HighAvailability
url: http://mirror.centos.org/centos/8-stream/HighAvailability/x86_64/os/
- name: CentOS Stream 8 PowerTools
url: http://mirror.centos.org/centos/8-stream/PowerTools/x86_64/os/
# default template for 'packages' infromation below
package-default:
name: python-%(project)s
distgit: ssh://pkgs.fedoraproject.org/python-%(project)s.git
patches: http://review.rdoproject.org/r/openstack/%(project)s.git
# master-distgit: http://review.rdoproject.org/r/openstack/%(project)s-distgit.git
master-distgit: https://github.com/rdo-packages/%(project)s-distgit.git
tags:
ussuri-uc:
ussuri:
train:
# custom templates for 'packages' information below, reducing
# redundant information in this file; inherits package-default
package-configs:
xstatic:
maintainers:
- github@sheep.art.pl
# templates using rpmfactory's repositories
rpmfactory-core:
name: openstack-%(project)s
upstream: https://opendev.org/openstack/%(project)s
# distgit: http://review.rdoproject.org/r/openstack/%(project)s-distgit.git
distgit: https://github.com/rdo-packages/%(project)s-distgit.git
patches: http://review.rdoproject.org/r/openstack/%(project)s.git
# master-distgit: http://review.rdoproject.org/r/openstack/%(project)s-distgit.git
master-distgit: https://github.com/rdo-packages/%(project)s-distgit.git
review-patches: ssh://review.rdoproject.org:29418/openstack/%(project)s.git
review-origin: ssh://review.rdoproject.org:29418/openstack/%(project)s-distgit.git
component: common
maintainers:
- jruzicka@redhat.com
- hguemar@fedoraproject.org
rpmfactory-client:
name: python-%(project)s
upstream: https://opendev.org/openstack/python-%(project)s
# distgit: http://review.rdoproject.org/r/openstack/%(project)s-distgit.git
distgit: https://github.com/rdo-packages/%(project)s-distgit.git
patches: http://review.rdoproject.org/r/openstack/%(project)s.git
# master-distgit: http://review.rdoproject.org/r/openstack/%(project)s-distgit.git
master-distgit: https://github.com/rdo-packages/%(project)s-distgit.git
review-patches: ssh://review.rdoproject.org:29418/openstack/%(project)s.git
review-origin: ssh://review.rdoproject.org:29418/openstack/%(project)s-distgit.git
component: clients
maintainers:
- jruzicka@redhat.com
- hguemar@fedoraproject.org
rpmfactory-lib:
name: python-%(project)s
upstream: https://opendev.org/openstack/%(project)s
# distgit: http://review.rdoproject.org/r/openstack/%(project)s-distgit.git
distgit: https://github.com/rdo-packages/%(project)s-distgit.git
patches: http://review.rdoproject.org/r/openstack/%(project)s.git
# master-distgit: http://review.rdoproject.org/r/openstack/%(project)s-distgit.git
master-distgit: https://github.com/rdo-packages/%(project)s-distgit.git
review-patches: ssh://review.rdoproject.org:29418/openstack/%(project)s.git
review-origin: ssh://review.rdoproject.org:29418/openstack/%(project)s-distgit.git
component: common
maintainers:
- apevec@redhat.com
- hguemar@fedoraproject.org
- lbezdick@redhat.com
rpmfactory-puppet:
name: '%(project)s'
upstream: https://opendev.org/openstack/%(project)s
# distgit: http://review.rdoproject.org/r/puppet/%(project)s-distgit.git
distgit: https://github.com/rdo-packages/%(project)s-distgit.git
patches: http://review.rdoproject.org/r/puppet/%(project)s.git
# master-distgit: http://review.rdoproject.org/r/puppet/%(project)s-distgit.git
master-distgit: https://github.com/rdo-packages/%(project)s-distgit.git
review-patches: ssh://review.rdoproject.org:29418/puppet/%(project)s.git
review-origin: ssh://review.rdoproject.org:29418/puppet/%(project)s-distgit.git
component: tripleo
maintainers:
- lbezdick@redhat.com
- jguiditt@redhat.com
- gchamoul@redhat.com
# Only building puppet modules on newton and later
tags:
ussuri-uc:
ussuri:
train:
rpmfactory-tempest-plugin:
# Name and Project will be defined.
name: '%(project)s'
upstream: https://opendev.org/openstack/%(project)s
# distgit: http://review.rdoproject.org/r/openstack/%(project)s-distgit.git
distgit: https://github.com/rdo-packages/%(project)s-distgit.git
patches: http://review.rdoproject.org/r/openstack/%(project)s.git
# master-distgit: http://review.rdoproject.org/r/openstack/%(project)s-distgit.git
master-distgit: https://github.com/rdo-packages/%(project)s-distgit.git
review-patches: ssh://review.rdoproject.org:29418/openstack/%(project)s.git
review-origin: ssh://review.rdoproject.org:29418/openstack/%(project)s-distgit.git
component: tempest
maintainers:
- chkumar@redhat.com
- ltoscano@redhat.com
tags:
ussuri-uc:
ussuri:
train:
rpm-packaging:
name: '%(project)s'
upstream: https://opendev.org/openstack/%(project)s
distgit: https://opendev.org/openstack/rpm-packaging
distgit-path: /openstack/%(project)s
master-distgit: https://opendev.org/openstack/rpm-packaging
patches: http://review.rdoproject.org/r/openstack/%(project)s.git
review-patches: ssh://review.rdoproject.org:29418/openstack/%(project)s.git
review-origin: ssh://review.rdoproject.org:29418/openstack/%(project)s-distgit.git
component: common
distro-branch: master
maintainers:
- jpena@redhat.com
tags:
ussuri-uc:
distro-branch: master
ussuri:
distro-branch: master
train:
distro-branch: master
packages:
# OpenStack Puppet Modules
- project: puppet-aodh
conf: rpmfactory-puppet
- project: puppet-barbican
conf: rpmfactory-puppet
- project: puppet-ceilometer
conf: rpmfactory-puppet
- project: puppet-cinder
conf: rpmfactory-puppet
- project: puppet-congress
conf: rpmfactory-puppet
- project: puppet-designate
conf: rpmfactory-puppet
- project: puppet-ec2api
conf: rpmfactory-puppet
maintainers:
- mschuppert@redhat.com
- project: puppet-glance
conf: rpmfactory-puppet
- project: puppet-gnocchi
conf: rpmfactory-puppet
- project: puppet-heat
conf: rpmfactory-puppet
- project: puppet-horizon
conf: rpmfactory-puppet
- project: puppet-ironic
conf: rpmfactory-puppet
- project: puppet-keystone
conf: rpmfactory-puppet
- project: puppet-magnum
conf: rpmfactory-puppet
maintainers:
- strigazi@gmail.com
- ykarel@redhat.com
- project: puppet-manila
conf: rpmfactory-puppet
- project: puppet-neutron
conf: rpmfactory-puppet
- project: puppet-nova
conf: rpmfactory-puppet
maintainers:
- mschuppert@redhat.com
- project: puppet-octavia
conf: rpmfactory-puppet
- project: puppet-oslo
conf: rpmfactory-puppet
- project: puppet-openstack_extras
conf: rpmfactory-puppet
- project: puppet-openstacklib
conf: rpmfactory-puppet
- project: puppet-ovn
conf: rpmfactory-puppet
- project: puppet-panko
conf: rpmfactory-puppet
- project: puppet-qdr
conf: rpmfactory-puppet
- project: puppet-rsyslog
conf: rpmfactory-puppet
upstream: https://github.com/voxpupuli/%(project)s
- project: puppet-sahara
conf: rpmfactory-puppet
- project: puppet-swift
conf: rpmfactory-puppet
- project: puppet-tacker
conf: rpmfactory-puppet
- project: puppet-tempest
conf: rpmfactory-puppet
- project: puppet-tripleo
conf: rpmfactory-puppet
- project: puppet-trove
conf: rpmfactory-puppet
- project: puppet-vitrage
conf: rpmfactory-puppet
- project: puppet-vswitch
conf: rpmfactory-puppet
- project: puppet-watcher
conf: rpmfactory-puppet
maintainers:
- ykarel@redhat.com
- project: puppet-ceph
conf: rpmfactory-puppet
- project: puppet-n1k-vsm
conf: rpmfactory-puppet
- project: puppet-mistral
conf: rpmfactory-puppet
- project: puppet-murano
conf: rpmfactory-puppet
- project: puppet-zaqar
conf: rpmfactory-puppet
- project: puppet-apache
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-apache
source-branch: main
- project: puppet-concat
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-concat
source-branch: main
- project: puppet-firewall
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-firewall
source-branch: main
- project: puppet-haproxy
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-haproxy
source-branch: main
- project: puppet-corosync
conf: rpmfactory-puppet
upstream: https://github.com/puppet-community/puppet-corosync
- project: puppet-git
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-git
- project: puppet-inifile
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-inifile
source-branch: main
- project: puppet-mongodb
conf: rpmfactory-puppet
upstream: https://github.com/voxpupuli/puppet-mongodb
- project: puppet-mysql
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-mysql
source-branch: main
- project: puppet-java
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-java
source-branch: main
- project: puppet-ntp
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-ntp
- project: puppet-rabbitmq
conf: rpmfactory-puppet
upstream: https://github.com/voxpupuli/puppet-rabbitmq
- project: puppet-rsync
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-rsync
source-branch: main
- project: puppet-stdlib
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-stdlib
source-branch: main
- project: puppet-tomcat
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-tomcat
source-branch: main
- project: puppet-vcsrepo
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-vcsrepo
source-branch: main
- project: puppet-xinetd
conf: rpmfactory-puppet
upstream: https://github.com/puppetlabs/puppetlabs-xinetd
source-branch: main
- project: puppet-cassandra
conf: rpmfactory-puppet
upstream: https://github.com/voxpupuli/puppet-cassandra
- project: puppet-certmonger
conf: rpmfactory-puppet
upstream: https://github.com/saltedsignal/%(project)s
- project: puppet-contrail
conf: rpmfactory-puppet
upstream: https://github.com/Juniper/%(project)s
maintainers:
- mhenkel@juniper.net
- kparmar@juniper.net
- project: puppet-datacat
conf: rpmfactory-puppet
upstream: https://github.com/richardc/%(project)s
- project: puppet-dns
conf: rpmfactory-puppet
upstream: https://github.com/theforeman/%(project)s
- project: puppet-elasticsearch
conf: rpmfactory-puppet
upstream: https://github.com/elastic/%(project)s
- project: puppet-etcd
conf: rpmfactory-puppet
upstream: https://github.com/puppet-etcd/%(project)s
- project: puppet-fdio
conf: rpmfactory-puppet
upstream: https://git.fd.io/%(project)s
- project: puppet-kafka
conf: rpmfactory-puppet
upstream: https://github.com/puppet-community/%(project)s
- project: puppet-fluentd
conf: rpmfactory-puppet
upstream: https://github.com/soylent/konstantin-fluentd
- project: puppet-ipaclient
conf: rpmfactory-puppet
upstream: https://github.com/joshuabaird/%(project)s
maintainers:
- alee@redhat.com
- project: puppet-keepalived
conf: rpmfactory-puppet
upstream: https://github.com/Unyonsys/puppet-module-keepalived
- project: puppet-kibana3
conf: rpmfactory-puppet
upstream: https://github.com/thejandroman/%(project)s
- project: puppet-memcached
conf: rpmfactory-puppet
upstream: https://github.com/saz/%(project)s
- project: puppet-midonet
conf: rpmfactory-puppet
upstream: https://opendev.org/openstack/%(project)s
maintainers:
- alejandroandreu@openmailbox.org
- project: puppet-collectd
conf: rpmfactory-puppet
upstream: https://github.com/voxpupuli/%(project)s
- project: puppet-module-data
conf: rpmfactory-puppet
upstream: https://github.com/ripienaar/%(project)s
# - project: puppet-nagios-openstack
# conf: rpmfactory-puppet
# upstream: https://github.com/gildub/%(project)s
- project: puppet-nssdb
conf: rpmfactory-puppet
upstream: https://github.com/rcritten/%(project)s
- project: puppet-opendaylight
conf: rpmfactory-puppet
upstream: https://git.opendaylight.org/gerrit/integration/packaging/%(project)s
- project: puppet-pacemaker
conf: rpmfactory-puppet
upstream: https://opendev.org/openstack/%(project)s
- project: puppet-powerdns
conf: rpmfactory-puppet
upstream: https://github.com/antonlindstrom/%(project)s
- project: puppet-redis
conf: rpmfactory-puppet
upstream: https://github.com/voxpupuli/%(project)s
- project: puppet-remote
conf: rpmfactory-puppet
upstream: https://github.com/paramite/%(project)s
- project: puppet-sensu
conf: rpmfactory-puppet
upstream: https://github.com/sensu/sensu-puppet
- project: puppet-snmp
conf: rpmfactory-puppet
upstream: https://github.com/razorsedge/%(project)s
- project: puppet-ssh
conf: rpmfactory-puppet
upstream: https://github.com/saz/%(project)s
- project: puppet-staging
conf: rpmfactory-puppet
upstream: https://github.com/nanliu/%(project)s
- project: puppet-timezone
conf: rpmfactory-puppet
upstream: https://github.com/saz/%(project)s
- project: puppet-uchiwa
conf: rpmfactory-puppet
upstream: https://github.com/Yelp/%(project)s
- project: puppet-vlan
conf: rpmfactory-puppet
upstream: https://github.com/derekhiggins/%(project)s
- project: puppet-zookeeper
conf: rpmfactory-puppet
upstream: https://github.com/deric/%(project)s
- project: puppet-kmod
conf: rpmfactory-puppet
upstream: https://github.com/voxpupuli/%(project)s
- project: puppet-sysctl
conf: rpmfactory-puppet
upstream: https://github.com/duritong/%(project)s
- project: puppet-systemd
conf: rpmfactory-puppet
upstream: https://github.com/voxpupuli/%(project)s
- project: puppet-lib-file_concat
conf: rpmfactory-puppet
upstream: https://github.com/electrical/%(project)s
maintainers:
- alejandroandreu@openmailbox.org
# core openstack projects
- project: nova
conf: rpmfactory-core
maintainers:
- kchamart@redhat.com
- smooney@redhat.com
component: compute
- project: cyborg
conf: rpmfactory-core
maintainers:
- smooney@redhat.com
component: compute
- project: keystone
conf: rpmfactory-core
component: keystone
maintainers:
- cdwilde@gmail.com
- dmendiza@redhat.com
- xek@redhat.com
- apevec@redhat.com
- project: glance
conf: rpmfactory-core
component: glance
maintainers:
- hguemar@fedoraproject.org
- cyril@redhat.com
- project: glance_store
conf: rpmfactory-lib
component: glance
name: python-glance-store
maintainers:
- hguemar@fedoraproject.org
- cyril@redhat.com
- project: swift
conf: rpmfactory-core
component: swift
maintainers:
- zaitcev@redhat.com
- cschwede@redhat.com
- project: ceilometer
conf: rpmfactory-core
component: cloudops
maintainers:
- mrunge@redhat.com
- ykulkarn@redhat.com
- project: gnocchi
name: gnocchi
conf: rpmfactory-core
component: cloudops
upstream: https://github.com/gnocchixyz/%(project)s
maintainers:
- mrunge@redhat.com
- ykulkarn@redhat.com
- project: aodh
conf: rpmfactory-core
component: cloudops
maintainers:
- mrunge@redhat.com
- ykulkarn@redhat.com
- project: panko
conf: rpmfactory-core
component: cloudops
maintainers:
- mrunge@redhat.com
- ykulkarn@redhat.com
- project: heat
conf: rpmfactory-core
component: tripleo
maintainers:
- bshephar@redhat.com
- ramishra@redhat.com
- project: cinder
conf: rpmfactory-core
component: cinder
maintainers:
- abishop@redhat.com
- eharney@redhat.com
- geguileo@redhat.com
- ltoscano@redhat.com
- rajatdhasmana@gmail.com
- rosmaita.fossdev@gmail.com
- project: cinderlib
conf: rpmfactory-lib
component: cinder
maintainers:
- abishop@redhat.com
- eharney@redhat.com
- geguileo@redhat.com
- ltoscano@redhat.com
- rajatdhasmana@gmail.com
- rosmaita.fossdev@gmail.com
- project: ironic
conf: rpmfactory-core
component: baremetal
maintainers:
- dtantsur@protonmail.com
- elfosardo@gmail.com
- iurygregory@gmail.com
- jkreger@gmail.com
- harald.jensas@gmail.com
- sbaker@redhat.com
- project: neutron
conf: rpmfactory-core
component: network
maintainers:
- bcafarel@redhat.com
- bhaley@redhat.com
- majopela@redhat.com
- nate.johnston@redhat.com
- ralonsoh@redhat.com
- skaplons@redhat.com
- twilson@redhat.com
- project: neutron-lib
conf: rpmfactory-lib
name: python-neutron-lib
component: network
maintainers:
- bcafarel@redhat.com
- bhaley@redhat.com
- majopela@redhat.com
- nate.johnston@redhat.com
- ralonsoh@redhat.com
- skaplons@redhat.com
- twilson@redhat.com
- project: whitebox-tempest-plugin
conf: rpmfactory-tempest-plugin
upstream: https://opendev.org/x/whitebox-tempest-plugin
name: python-whitebox-tests-tempest
component: compute
maintainers:
- alifshit@redhat.com
- ltoscano@redhat.com
- project: cyborg-tempest-plugin
conf: rpmfactory-tempest-plugin
name: python-cyborg-tests-tempest
maintainers:
- ltoscano@redhat.com
- smooney@redhat.com
component: compute
- project: neutron-tempest-plugin
conf: rpmfactory-tempest-plugin
name: python-neutron-tests-tempest
component: network
maintainers:
- bcafarel@redhat.com
- bhaley@redhat.com
- majopela@redhat.com
- nate.johnston@redhat.com
- ralonsoh@redhat.com
- skaplons@redhat.com
- ltoscano@redhat.com
- twilson@redhat.com
- project: whitebox-neutron-tempest-plugin
conf: rpmfactory-tempest-plugin
upstream: https://opendev.org/x/whitebox-neutron-tempest-plugin
name: python-whitebox-neutron-tests-tempest
component: network
maintainers:
- alex.katz.post@gmail.com
- eolivare@redhat.com
- mblue@redhat.com
- ltoscano@redhat.com
- rsafrono@redhat.com
- skaplons@redhat.com