-
Notifications
You must be signed in to change notification settings - Fork 47
/
config.yaml
1559 lines (1559 loc) · 42.7 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
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
orgs:
redhat-cop:
admins:
- etsauer
- garethahealy
- jaredburck
- oybed
- pabrahamsson
- redhat-cop-ci-bot
- sabre1041
billing_email: esauer@redhat.com
company: ""
default_repository_permission: read
description: The Red Hat Communities of Practice
email: ""
has_organization_projects: true
has_repository_projects: true
location: ""
members:
- 9strands
- a-beck
- abaird-rh
- abhijithumbe
- abikouo
- adamgoossens
- adlerfleurant
- adonisgarciac
- agonzalezrh
- ahardin-rh
- ahsen-shah
- akasurde
- aleixhub
- aliakkaya7
- alinabuzachis
- ally-jarrett
- andrew-jones
- andywaltlova
- arnaik-rh
- arthomasredhat
- arvin-a
- ashokjammula1
- bardielle
- bbeaudoin
- bbethell-1
- beelandc
- bkaraoren
- bmarlow
- bontreger
- boogiespook
- bosebc
- branic
- brennanpaciorek
- bszeti
- cescoffier
- cgruver
- cgwalters
- chadmf
- chanoian
- charles-shaw
- chofstede
- cidrblock
- ckavili
- ckomopou
- ckyrouac
- claudiol
- cmcornejocrespo
- cnuland
- cpeters
- cpmeadors
- crenwick93
- d-jana
- danhawker
- dasong666
- davgordo
- david-igou
- day0hero
- ddreggors
- deewhyweb
- djdanielsson
- drichtarik
- eformat
- ericzolf
- erouvas
- eye0fra
- fridim
- giofontana
- gjbianco
- gnekic
- gnunn1
- gomathiselvis
- goneri
- gravesm
- gregjohnstewart
- grodideal
- gsampaio-rh
- guidograzioli
- hakbailey
- hararora123
- hcherukuri
- heatmiser
- hector-vido
- herve4m
- hfenner
- huddlesj
- hultzj
- hwurht
- ianwatsonrh
- ibazulic
- ihsanmokhlisse
- infosec812
- ippul
- itewk
- ivarmu
- jarcher
- jayfray12
- jeckersb
- jeffcpullen
- jeffmcutter
- jeremyrdavis
- jflowers
- jforce
- jhawkinsrh
- jillr
- jimdillon
- jkupferer
- johnsimcall
- jooho
- jordigilh
- josecastillolema
- josephassiga
- jritter
- jscar-hawk
- jtudelag
- juliaaano
- juliovp01
- juozasa
- justjais
- kaileshmistry
- kaiobrien
- kb-perbyte
- kenwilli
- kincl
- kkoller
- kleesc
- klewis0928
- kubealex
- kyetter
- lautou
- leethomasrh
- leoaaraujo
- levysantanna
- limershein
- linuxstudio
- lpanza
- lpsantil
- luckylittle
- luqmanbarry
- machacekondra
- makentenza
- makirill
- malacourse
- mandar242
- mannyci
- marcosmamorim
- matallen
- mathianasj
- matoval
- mattheh
- matthew-willis-redhat
- maxamillion
- mffiedler
- mhjacks
- mike4263
- mmtktl
- mophahr
- mpetrive-rh
- mwitzenm
- nasx
- natelove
- neosilicon-redhat
- newgoliath
- nickjordan
- nilashishc
- nirarg
- noelo
- nonyno3lle
- noseka1
- p3ck
- pacopeng
- pamenon
- parmstro
- pauljamesbrown
- pecorawal
- perryrivera1
- pfeifferj
- pittar
- pkliczewski
- prakhar1985
- qalthos
- r0x0d
- radudd
- raedrizk
- raffaelespazzoli
- raffamendes
- ranabirchakraborty
- rdruss
- resolutecoder
- rflorenc
- rgoodson-redhat
- rhjcd
- rhodzelmans
- ribua
- rmarting
- rmgrimm
- rnozaki
- robbbbh
- robertsandoval
- robotsail
- rohitthakur2590
- roverflow
- rpelisse
- ruchip16
- rut31337
- ryanzhang
- samueltauil
- sangeetaraghu
- sborenst
- sean-m-sullivan
- selrahal
- senthilredhat
- seravat
- shah-zobair
- silvinux
- smrowley
- solumath
- springdo
- stencell
- stephennimmo
- stocky37
- strangiato
- sumitridhal
- swapdisk
- tech2734
- theckang
- thedoubl3j
- themoosman
- thom-at-redhat
- thomasphall
- tompage1994
- tonykay
- tosmi
- treddy08
- trevorbox
- trishnaguha
- turbra
- vaibhavjainwiz
- varodrig
- vbroniko
- victorock
- vvaldez
- welshstew
- wilson-walrus
- wkulhanek
- wolfc
- yigitpolat
- yonosoyvictor
- yvarbanov
members_can_create_repositories: false
name: Red Hat Communities of Practice
teams:
aarchived:
description: Archived repos - double AA spelling to make top of list
maintainers:
- etsauer
- garethahealy
- jaredburck
- oybed
- pabrahamsson
- redhat-cop-ci-bot
- sabre1041
members: []
privacy: closed
repos:
ansible-middleware-playbooks: admin
ansible-role-jboss-common: admin
ansible_middleware_galaxy: admin
applier-cli: admin
automate-jcliff: admin
businessautomation-cop: admin
canary: admin
casl-ansible: admin
casl-galaxy: admin
community-operators: admin
container-native-spring-postgresql: admin
dark-tower: admin
dash: admin
distributed-working-cop: admin
jboss_amq: admin
jboss_amq_openshift: admin
jboss_bxms: admin
jboss_datagrid: admin
jboss_eap: admin
jboss_fuse: admin
jboss_webserver: admin
k8s-notify: admin
microsegmentation-operator: admin
ocp-supply-chain-demo: admin
open-organization: admin
openshift-4-alpha-enablement: admin
openshift-demo-library: admin
openshift-elasticsearch: admin
openshift-event-controller: admin
openshift-image-signing-scanning: admin
openshift-migration-best-practices: admin
openshift-playbooks: admin
operationalizing-openshift-lab: admin
pathfinder: admin
pathfinder-ui: admin
pbl-rocketchat: admin
pipeline-library: admin
redhat_sso: admin
resource-locker-operator: admin
rhc-ocp-playbook-test: admin
rocketchat-integrations: admin
rti: admin
spring-rest: admin
template2helm: admin
uncontained.io: admin
agnosticd-core:
description: Core team members for the agnosticd project.
maintainers:
- agonzalezrh
- fridim
- jkupferer
- newgoliath
- prakhar1985
- rut31337
- tonykay
- wkulhanek
members: []
privacy: closed
repos:
agnosticd: admin
ansible-networking:
description: Ansible Networking
maintainers:
- cidrblock
- kb-perbyte
- nilashishc
- rohitthakur2590
- roverflow
- ruchip16
- trishnaguha
members: []
privacy: closed
repos:
network.acls: admin
network.backup: admin
network.base: admin
network.bgp: admin
network.interfaces: admin
network.ospf: admin
network.restore: admin
network.telemetry: admin
network.vpn: admin
ansible-snapshot-admins:
description: Administrators for ansible-snapshot
maintainers:
- heatmiser
- swapdisk
members: []
privacy: closed
repos:
infra.lvm_snapshots: admin
ansible-zipship:
description: "Ansible ZipShip"
maintainers:
- a-beck
- bontreger
- jeffcpullen
- kyetter
- sabre1041
members: []
privacy: closed
repos:
ansible-zipship: admin
ansible-zipship-images: read
teams:
ansible-zipship-admins:
description: Ansible ZipShip Admins
maintainers:
- a-beck
- bontreger
- jeffcpullen
- kyetter
- sabre1041
members:
- hultzj
privacy: closed
repos:
ansible-zipship: admin
ansible-zipship-images: admin
ansible-zipship-mergers:
description: Ansible ZipShip Mergers
maintainers:
- a-beck
- bontreger
- jeffcpullen
- kyetter
- sabre1041
members: []
privacy: closed
repos:
ansible-zipship: write
ansible-zipship-images: write
appdev-cop:
description: Team for the management of the Application Development CoP
maintainers:
- deewhyweb
- infosec812
- jeremyrdavis
- pamenon
members:
- cescoffier
- gregjohnstewart
- rdruss
- sangeetaraghu
- smrowley
privacy: closed
repos:
appdev-cop: admin
quarkus-scalable-graphql-demo: admin
teams:
committers:
description: ""
maintainers:
- deewhyweb
- infosec812
- jeremyrdavis
- pamenon
privacy: closed
repos:
appdev-cop: admin
quarkus-scalable-graphql-demo: admin
auto-docs:
description: ""
maintainers:
- etsauer
- oybed
- sabre1041
privacy: closed
repos:
auto-docs: read
teams:
auto-docs-mergers:
description: ""
maintainers:
- etsauer
- oybed
- sabre1041
privacy: closed
repos:
auto-docs: write
automation-cop-members:
description: ""
maintainers:
- bontreger
- djdanielsson
- ericzolf
- jeffmcutter
- mophahr
- sabre1041
- vvaldez
members:
- adonisgarciac
- bontreger
- branic
- chofstede
- ivarmu
- mpetrive-rh
- sean-m-sullivan
- silvinux
- tompage1994
- victorock
privacy: closed
repos:
aap_config_as_code_docs: write
aap_configuration_extended: write
aap_configuration_template: write
aap_utilities: write
ansible_collections_tooling: write
automate-exotic: write
automate-tower: write
automate-tower-ha-dr: write
automate-windows: write
automate_fedora_desktop: write
automation-good-practices: write
cloud_provision_automation_collection: write
common-automation: write
eda_configuration: write
ee_utilities: write
elk_automation: write
hardware_automation_collection: write
infra.aap_configuration: write
infra.controller_configuration: write
infra.leapp: write
molecule_cicd_automation: write
teams:
automation-cop-mgrs:
description: ""
maintainers:
- bontreger
- djdanielsson
- ericzolf
- jeffmcutter
- mophahr
- sabre1041
- vvaldez
members: []
privacy: closed
repos:
aap_config_as_code_docs: admin
aap_configuration_template: admin
aap_utilities: admin
ansible_collections_tooling: admin
automate-exotic: admin
automate-tower: admin
automate-tower-ha-dr: admin
automate-windows: admin
automate_fedora_desktop: admin
automation-good-practices: admin
cloud_provision_automation_collection: admin
common-automation: admin
eda_configuration: admin
ee_utilities: admin
elk_automation: admin
hardware_automation_collection: admin
infra.aap_configuration: admin
infra.controller_configuration: admin
molecule_cicd_automation: admin
automation-cop-tower-mgrs:
description: AAP Config as Code managers
maintainers:
- djdanielsson
- sean-m-sullivan
- tompage1994
members: []
privacy: closed
repos:
aap_config_as_code_docs: admin
aap_configuration_extended: admin
aap_configuration_template: admin
aap_utilities: admin
ansible_collections_tooling: admin
eda_configuration: admin
ee_utilities: admin
infra.aap_configuration: admin
infra.controller_configuration: admin
validated-content-curators:
description: Validated Content Contributors
maintainers: []
members:
- abikouo
- aliakkaya7
- alinabuzachis
- bardielle
- cidrblock
- claudiol
- ericzolf
- gomathiselvis
- gravesm
- guidograzioli
- hakbailey
- hcherukuri
- herve4m
- jillr
- jritter
- justjais
- kb-perbyte
- machacekondra
- mandar242
- matoval
- maxamillion
- nilashishc
- nirarg
- p3ck
- qalthos
- ranabirchakraborty
- resolutecoder
- rhodzelmans
- rohitthakur2590
- rpelisse
- sabre1041
- thom-at-redhat
- tompage1994
- trishnaguha
- wolfc
privacy: closed
repos:
aap_utilities: write
ansible_rekey_variables: admin
cloud.aws_ops: admin
cloud.aws_troubleshooting: admin
cloud.azure_ops: admin
cloud.gcp_ops: admin
cloud.terraform_ops: admin
cloud.vmware_ops: admin
edge.microshift: admin
ee_utilities: write
infra.aap_configuration: write
infra.controller_configuration: write
infra.leapp: admin
infra.osbuild: admin
middleware_ocpv: admin
network.acls: admin
network.backup: admin
network.base: admin
network.bgp: admin
network.interfaces: admin
network.ospf: admin
network.restore: admin
network.telemetry: admin
network.vpn: admin
quay_configuration: admin
security.firewall_mgmt: admin
blockchain-cop:
description: The Blockchain Community of Practice
maintainers:
- robotsail
privacy: closed
repos:
blockchain-cop: write
container-cop:
description: Contributors to the Containers & PaaS CoP
maintainers:
- etsauer
- oybed
- sabre1041
members:
- abaird-rh
- bbeaudoin
- beelandc
- bszeti
- ckavili
- davgordo
- drichtarik
- garethahealy
- huddlesj
- ianwatsonrh
- infosec812
- jaredburck
- jimdillon
- jooho
- juliaaano
- juozasa
- kkoller
- linuxstudio
- lpsantil
- luckylittle
- makentenza
- malacourse
- mathianasj
- mike4263
- mophahr
- mwitzenm
- noelo
- pabrahamsson
- raffaelespazzoli
- rpelisse
- samueltauil
- shah-zobair
- springdo
- stocky37
- themoosman
- vvaldez
privacy: closed
repos: {}
teams:
bats:
description: Bash Automation Testing System
maintainers:
- ckavili
- garethahealy
- pabrahamsson
- springdo
privacy: closed
repos:
bats-library: read
teams:
bats-mergers:
description: BATS Mergers & Admins
maintainers:
- ckavili
- garethahealy
- pabrahamsson
- springdo
privacy: closed
repos:
bats-library: admin
cant-contain-this:
description: ""
maintainers:
- etsauer
- oybed
- sabre1041
members:
- bbeaudoin
- beelandc
- davgordo
- huddlesj
- jaredburck
- jimdillon
- makentenza
- malacourse
- mwitzenm
- pabrahamsson
- raffaelespazzoli
- themoosman
privacy: closed
repos:
cluster-lifecycle: read
container-pipelines: read
declarative-openshift: read
git-flow: read
gows: read
ninja-points: read
openshift-management: read
openshift-templates: read
teams:
cant-contain-this-mergers:
description: People who can merge
maintainers:
- etsauer
- oybed
- sabre1041
members:
- bbeaudoin
- beelandc
- davgordo
- huddlesj
- jaredburck
- jimdillon
- mwitzenm
- pabrahamsson
privacy: closed
repos:
declarative-openshift: write
gows: write
openshift-toolkit: admin
casl:
description: Container Automation Solutions Lab contributors
maintainers:
- etsauer
- oybed
- sabre1041
privacy: closed
repos: {}
teams:
casl-mergers:
description: CASL Mergers
maintainers:
- etsauer
- oybed
- sabre1041
members:
- pabrahamsson
privacy: closed
repos:
casl-ansible: write
cert-operator: write
cluster-lifecycle: write
declarative-openshift: write
dynamic-rbac-operator: write
infra-ansible: write
monitoring: write
onboarding-manager: write
openshift-applier: write
openshift-management: write
tool-integrations: write
container-cop-core:
description: Core team for the PaaS & Containers CoP
maintainers:
- etsauer
- oybed
- pabrahamsson
- sabre1041
members:
- garethahealy
- jaredburck
- raffaelespazzoli
privacy: closed
repos:
acm-policies: admin
bats-library: admin
casl-ansible: admin
chocolatey-packages: admin
container-pipelines: admin
containers-quickstarts: admin
homebrew-redhat-cop: admin
katacoda-scenarios: admin
keepalived-operator: admin
ocp4-prereqs-validator: admin
ocp4-vsphere-workshop: admin
onboarding-manager: write
openshift-applier: admin
openshift-management: admin
openshift-templates: admin
openshift-toolkit: admin
org: admin
osia: admin
podpreset-webhook: admin
container-security:
description: Container Security
maintainers:
- cnuland
- sabre1041
privacy: closed
repos:
image-scanning-signing-service: admin
day-in-the-life:
description: Day in the Life of a Developer team
maintainers:
- etsauer
- pabrahamsson
- sabre1041
members:
- ckavili
- eformat
- garethahealy
- infosec812
- jtudelag
- malacourse
- noelo
- raffaelespazzoli
- springdo
privacy: closed
repos:
cluster-lifecycle: read
git-flow: read
gows: read
helm-charts: read
ninja-points: read
openshift-management: read
rego-policies: read
teams:
day-in-the-life-mergers:
description: ""
maintainers:
- etsauer
- pabrahamsson
- sabre1041
members:
- ckavili
- eformat
- garethahealy
- infosec812
- jtudelag
- malacourse
- raffaelespazzoli
- redhat-cop-ci-bot
- springdo
privacy: closed
repos:
container-pipelines: admin
containers-quickstarts: admin
helm-charts: admin
openshift-management: admin
openshift-templates: admin
openshift-toolkit: admin
declarative-openshift:
description: Maintainers of the declarative-openshift repo
maintainers:
- etsauer
members:
- gnekic
- jkupferer
- lpanza
- oybed
- pacopeng
- sabre1041
- senthilredhat
repos:
declarative-openshift: write
devspaces:
description: OpenShift Dev Spaces
maintainers:
- cgruver
- etsauer
- natelove
privacy: closed
repos:
devspaces-images: admin
github-actions:
description: GitHub Actions Collection
maintainers:
- garethahealy
- springdo
privacy: closed
repos:
github-actions: read
teams:
github-actions-mergers:
description: GitHub Actions Mergers
maintainers:
- garethahealy
- springdo
privacy: closed
repos:
github-actions: admin
gitops-wg:
description: "GitOps Working Group"
maintainers:
- gnunn1
- pittar
- sabre1041
privacy: closed
repos:
gitops-catalog: read
gitops-standards-repo-template: read
teams:
gitops-wg-mergers:
description: "GitOps Working Group Mergers"
maintainers:
- gnunn1
- pittar
- raffaelespazzoli
- sabre1041
- strangiato
privacy: closed
repos:
gitops-catalog: admin
gitops-standards-repo-template: admin
golang-cop:
description: "Team for the management of the Golang CoP"
maintainers:
- radudd
members:
- raffaelespazzoli
- rflorenc
- sabre1041
- tosmi
privacy: closed
repos: {}
helpernode:
description: "GitOps Working Group"
maintainers:
- sabre1041
members:
- robertsandoval
privacy: closed
repos:
ocp4-helpernode: admin
ocp-disconnected:
description: "OCP disconnected special interest group"
maintainers:
- itewk
- jflowers
- sabre1041
members:
- arvin-a
privacy: closed
repos:
ocp-disconnected-docs: admin
openshift-disconnected-operators: admin
operators-wg:
description: ""
maintainers:
- raffaelespazzoli
- sabre1041
members:
- kkoller
- mathianasj
- nickjordan
- trevorbox
privacy: closed
repos:
cert-operator: read
cert-utils-operator: read
community-operators-prod: read
dynamic-rbac-operator: read
egressip-ipam-operator: read
github-workflows-operators: read
gitwebhook-operator: read
global-load-balancer-operator: read
group-sync-operator: read
kube-rbac-proxy: read
must-gather-operator: read
namespace-configuration-operator: read
openshift-disconnected-operators: read
operator-utils: read
patch-operator: read
proactive-node-scaling-operator: read
project-initialize-operator: read
redhat-cop-operators: read
vault-config-operator: read
vault-plugin-secrets-quay: read
volume-expander-operator: read
teams:
dynamic-rbac-operator-admins:
description: Admin group for the dynamic-rbac-operator