-
Notifications
You must be signed in to change notification settings - Fork 233
/
knative-extensions.yaml
1215 lines (1181 loc) · 37.4 KB
/
knative-extensions.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:
knative-extensions:
name: Knative Extensions
description: Extensions and plugins that extend the Knative project.
email: admins@knative.dev
billing_email: admins@knative.dev
has_organization_projects: true
has_repository_projects: true
members_can_create_repositories: false
default_repository_permission: read
admins:
- aliok
- caniszczyk
- cncf-ci
- davidhadas
- dprotaso
- dsimansk
- evankanderson
- knative-prow-robot
- nainaz
- nrrso
- psschwei
- salaboy
- thelinuxfoundation
- upodroid
members:
- aavarghese
- alexagriffith
- andrew-su
- AngeloDanducci
- aslom
- astelmashenko
- bbtong
- benmoss
- BobyMCbobs
- Cali0707
- cardil
- carlisia
- cdlliuy
- chaodaiG
- chizhg
- christophd
- chunyilyu
- chzhyang
- converge
- coryrc
- cr22rc
- creydr
- csantanapr
- Cynocracy
- daisy-ycguo
- dan-j
- debasishbsws
- devguyio
- dilipgb
- dolfolife
- duglin
- firatbezir
- gab-satchi
- gabo1208
- haubenr
- hh
- hhk7734
- houshengbo
- ikavgo
- itsmurugappan
- izabelacg
- jcrossley3
- jkjell
- joeeltgroth
- jrangelramos
- JRBANCEL
- jsanin-vmw
- julz
- jwcesign
- k4leung4
- kauana
- KauzClay
- kellyaa
- knative-automation
- knative-metrics-robot
- knative-prow-releaser-robot
- knative-prow-updater-robot
- knative-test-reporter-robot
- krithika369
- lance
- lberk
- lionelvillard
- liuchangyan
- lkingland
- Leo6Leo
- macruzbar
- maschmid
- matejvasek
- mattmoor
- matzew
- maximilien
- mgencur
- mkuratczyk
- mmejia02
- mvinkler
- nader-ziada
- navidshaikh
- norbjd
- norman465
- odacremolbap
- omerbensaadon
- pierDipi
- pmorie
- pradnyavmw
- pymhq
- RamyChaabane
- ReToCode
- rhuss
- ricardozanini
- richterdavid
- sebgoa
- senthilnathan
- Shashankft9
- ShravaniAK
- skonto
- smoser-ibm
- snneji
- spolti
- steren
- steven0711dong
- sukumargaonkar
- sutaakar
- tardieu
- tcnghia
- tzununbekov
- vagababov
- vaibhavjainwiz
- vaikas
- vdemeester
- vishal-chdhry
- vyasgun
- xtreme-sameer-vohra
- xtreme-vikram-yadav
- xxinran
- xiangpingjiang
- yanweiguo
- yaron2
- yijie-04
- yuvalif
- zainabhusain227
- yuzisun
- zhanggbj
- zhaojizhuang
- ZhiminXiang
- kahirokunn
repos:
# NOTE: If you are adding a repo here, you may also want to grant repo
# permissions for one or more teams, in the next section.
.github:
allow_merge_commit: false
allow_rebase_merge: false
# See also: https://github.blog/changelog/2019-02-21-organization-wide-community-health-files/
# See also: https://docs.github.com/en/actions/configuring-and-managing-workflows/sharing-workflow-templates-within-your-organization
description: "Repository for sharing org-wide Github metadata and workflow templates."
has_projects: true
has_wiki: false
async-component:
allow_merge_commit: false
allow_rebase_merge: false
description: "Add-on component to enable asynchronous service requests to Knative Services"
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
archived: true
autoscaler-keda:
allow_merge_commit: false
allow_rebase_merge: false
description: "Keda based Knative HPA Autoscaler"
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
backstage-plugins:
allow_merge_commit: false
allow_rebase_merge: false
description: Knative plugins for Backstage.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
container-freezer:
allow_merge_commit: false
allow_rebase_merge: false
description: Idle containers when not handling requests.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
archived: true
scaling-group:
allow_merge_commit: false
allow_rebase_merge: false
description: Prewarm the knative servives based on the call trace.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
archived: true
control-protocol:
allow_merge_commit: false
allow_rebase_merge: false
description: Control protocol to enable interaction between control plane and data plane without redeploy
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
archived: true
discovery:
allow_merge_commit: false
allow_rebase_merge: false
description: "Enable interactions with a cluster and its resources: built-in types, CRDs and COs."
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
educational-game:
allow_merge_commit: false
allow_rebase_merge: false
description: "An educational game to teach Knative concepts, primarily focused around Event Driven Architectures"
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-awssqs:
allow_merge_commit: false
allow_rebase_merge: false
description: AWS SQS integration with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-camel:
allow_merge_commit: false
allow_rebase_merge: false
description: Apache Camel integration with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-ceph:
allow_merge_commit: false
allow_rebase_merge: false
description: Converts Ceph notifications to Cloud Events for use with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-couchdb:
allow_merge_commit: false
allow_rebase_merge: false
description: CouchDB integration with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-github:
allow_merge_commit: false
allow_rebase_merge: false
description: Github integration with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-gitlab:
allow_merge_commit: false
allow_rebase_merge: false
description: GitLab integration with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-integrations:
allow_merge_commit: false
allow_rebase_merge: false
description: Eventing integration container images
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-istio:
allow_merge_commit: false
allow_rebase_merge: false
description: Eventing integration with istio.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-kafka:
allow_merge_commit: false
allow_rebase_merge: false
description: Kafka integrations with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-kogito:
allow_merge_commit: false
allow_rebase_merge: false
description: Kogito integration with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
archived: true
eventing-kafka-broker:
allow_merge_commit: false
allow_rebase_merge: false
description: Alternate Kafka Broker implementation.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-natss:
allow_merge_commit: false
allow_rebase_merge: false
description: NATS streaming integration with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-prometheus:
allow_merge_commit: false
allow_rebase_merge: false
description: Prometheus integration with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-rabbitmq:
allow_merge_commit: false
allow_rebase_merge: false
description: RabbitMQ eventing components. Knative Source and Broker.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
eventing-redis:
allow_merge_commit: false
allow_rebase_merge: false
description: Redis integration with Knative Eventing.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
func-go:
allow_merge_commit: false
allow_rebase_merge: false
description: Golang runtime and invocation framework for Knative functions
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
func-python:
allow_merge_commit: false
allow_rebase_merge: false
description: Python runtime and invocation framework for Knative functions
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
func-tastic:
allow_merge_commit: false
allow_rebase_merge: false
description: Templates and examples for Knative functions.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
homebrew-kn-plugins:
allow_merge_commit: false
allow_rebase_merge: false
description: Homebrew tap for holding all kn plugins that are released together with Knative.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kn-plugin-admin:
allow_merge_commit: false
allow_rebase_merge: false
description: Kn plugin for managing a Kubernetes based Knative installation.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kn-plugin-diag:
archived: true
allow_merge_commit: false
allow_rebase_merge: false
description: Kn plugin for exposing detailed information for different layers of knative objects for diagnose.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kn-plugin-event:
allow_merge_commit: false
allow_rebase_merge: false
description: Kn plugin for sending events to Knative sinks.
has_projects: true
has_wiki: false
kn-plugin-migration:
archived: true
allow_merge_commit: false
allow_rebase_merge: false
description: Kn plugin for migrating Knative services from one cluster to another.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kn-plugin-operator:
allow_merge_commit: false
allow_rebase_merge: false
description: Kn plugin for managing Knative with Knative Operator.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kn-plugin-quickstart:
allow_merge_commit: false
allow_rebase_merge: false
description: Kn plugin for installation of Knative cluster for developers to quickstart.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kn-plugin-service-log:
allow_merge_commit: false
allow_rebase_merge: false
description: Kn plugin for showing the standard output of Knative services.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kn-plugin-sample:
allow_merge_commit: false
allow_rebase_merge: false
description: A sample Kn plugin which can be used as a blueprint.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kn-plugin-source-kafka:
allow_merge_commit: false
allow_rebase_merge: false
description: Kn plugin for managing Kafka event sources.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kn-plugin-source-kamelet:
allow_merge_commit: false
allow_rebase_merge: false
description: Kn plugin for managing Kamelets and KameletBindings
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
knobots:
allow_merge_commit: false
allow_rebase_merge: false
description: A collection of github actions for routine maintenance of Knative repositories.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
kperf:
archived: true
allow_merge_commit: false
allow_rebase_merge: false
description: A benchmarking tool to evaluate Knative performance
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
monitoring:
allow_merge_commit: false
allow_rebase_merge: false
description: Monitoring support for Knative
has_projects: false
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
net-certmanager:
allow_merge_commit: false
allow_rebase_merge: false
description: Integration between knative and certmanager for managing TLS certs automatically.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
archived: true
net-contour:
allow_merge_commit: false
allow_rebase_merge: false
description: A Knative ingress controller for Project Contour
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
net-http01:
allow_merge_commit: false
allow_rebase_merge: false
description: An ACME HTTP01 solver for the Knative Certificate CRD.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
archived: true
net-istio:
allow_merge_commit: false
allow_rebase_merge: false
description: A Knative ingress controller for Istio.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
net-gateway-api:
allow_merge_commit: false
allow_rebase_merge: false
description: Integration between Knative and service-apis (ingress v2) for Knative Ingress migration.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
net-kourier:
allow_merge_commit: false
allow_rebase_merge: false
description: Purpose-built Knative Ingress implementation using just Envoy
with no additional CRDs
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
reconciler-test:
allow_merge_commit: false
allow_rebase_merge: false
description: Behaviour driven reconciler testing framework.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
sample-controller:
allow_merge_commit: false
allow_rebase_merge: false
description: A template project for writing your own controller using the Knative helper libraries.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
sample-source:
allow_merge_commit: false
allow_rebase_merge: false
description: A template project for writing your own Knative eventing source.
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
serving-progressive-rollout:
allow_merge_commit: false
allow_rebase_merge: false
description: Knative Serving extension to roll out the revision progressively
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
security-guard:
allow_merge_commit: false
allow_rebase_merge: false
description: Runtime security plug to protect user containers
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
wg-repository:
allow_merge_commit: false
allow_rebase_merge: false
description: "Template for WG-owned repositories."
has_projects: true
has_wiki: false
squash_merge_commit_title: PR_TITLE
squash_merge_commit_message: COMMIT_MESSAGES
teams:
Client Writers:
description: Grants write access to client-related repositories.
privacy: closed
repos:
homebrew-kn-plugins: write
kn-plugin-admin: write
kn-plugin-event: write
kn-plugin-operator: write
kn-plugin-quickstart: write
kn-plugin-sample: write
kn-plugin-service-log: write
kn-plugin-source-kafka: write
kn-plugin-source-kamelet: write
teams:
Client WG Leads:
description: The Working Group Leads for Client
members:
- dsimansk
- rhuss
privacy: closed
Docs Writers:
description: Grants write access to docs-related repositories.
privacy: closed
members:
- csantanapr
- skonto
- retocode
Eventing Reviewers:
description: Receive reviews for eventing-related repositories
privacy: closed
members:
- creydr
- cali0707
- Leo6Leo
Eventing Writers:
description: Grants write access to eventing-related repositories.
privacy: closed
repos:
backstage-plugins: write
eventing-autoscaler-keda: write
eventing-awssqs: write
eventing-camel: write
eventing-ceph: write
eventing-couchdb: write
eventing-github: write
eventing-gitlab: write
eventing-integrations: write
eventing-istio: write
eventing-kogito: write
eventing-natss: write
eventing-prometheus: write
eventing-rabbitmq: write
eventing-redis: write
sample-source: write
discovery: write
reconciler-test: write
teams:
Eventing WG Leads:
description: The Working Group leads for Eventing
members:
- pierDipi
privacy: closed
members:
- aliok
- cali0707
- creydr
- matzew
- Leo6Leo
- lionelvillard
Eventing Kafka Writers:
description: Grants write access to Eventing Kafka WG leads on related repositories.
privacy: closed
repos:
eventing-kafka: write
eventing-kafka-broker: write
Function Runtime Writers:
description: Grants write access to knative-extensions func-go, func-python
privacy: closed
repos:
func-go: write
func-python: write
members:
- lance
- lkingland
- matejvasek
- matzew
- nainaz
- salaboy
Functastic Writers:
description: Grants write access to function related repositories
privacy: closed
repos:
func-tastic: write
members:
- lance
- lkingland
- matejvasek
- matzew
- nainaz
- salaboy
Knative Admin:
description: Individuals in the project who are responsible for billing and
general project administration.
privacy: closed
repos:
# All repos should be listed here!
.github: admin
async-component: admin
autoscaler-keda: admin
backstage-plugins: admin
container-freezer: admin
scaling-group: admin
discovery: admin
educational-game: admin
eventing-autoscaler-keda: admin
eventing-awssqs: admin
eventing-camel: admin
eventing-ceph: admin
eventing-couchdb: admin
eventing-github: admin
eventing-gitlab: admin
eventing-integrations: admin
eventing-istio: admin
eventing-kafka: admin
eventing-kogito: admin
eventing-kafka-broker: admin
eventing-natss: admin
eventing-prometheus: admin
eventing-rabbitmq: admin
eventing-redis: admin
func-go: admin
func-python: admin
func-tastic: admin
homebrew-kn-plugins: admin
kn-plugin-admin: admin
kn-plugin-diag: admin
kn-plugin-event: admin
kn-plugin-migration: admin
kn-plugin-operator: admin
kn-plugin-quickstart: admin
kn-plugin-sample: admin
kn-plugin-service-log: admin
kn-plugin-source-kafka: admin
kn-plugin-source-kamelet: admin
knobots: admin
kperf: admin
net-contour: admin
net-http01: admin
net-istio: admin
net-gateway-api: admin
net-kourier: admin
monitoring: admin
reconciler-test: admin
sample-controller: admin
sample-source: admin
serving-progressive-rollout: admin
security-guard: admin
wg-repository: admin
teams:
Knative Robots:
description: Contains robots and only robots.
members:
- knative-automation
- knative-prow-robot
- knative-prow-releaser-robot
- knative-prow-updater-robot
- knative-test-reporter-robot
privacy: closed
Steering Committee:
description: ""
maintainers:
- aliok
- evankanderson
- nainaz
- salaboy
- davidhadas
- dprotaso
- dsimansk
- psschwei
privacy: closed
Technical Oversight Committee:
description: Members of the Knative Technical Oversight Committee (TOC)
maintainers: []
privacy: closed
Knative Release Leads:
privacy: closed
description: Active members of the Knative Release Leads rotation.
maintainers: []
Productivity Leads:
#Using the same team name as below `Productivity WG Leads` puts peribolos in a weird state.
privacy: closed
description: Members of the Productivity WG Leads.
maintainers:
- cardil
- upodroid
Operations Writers:
description: Grants write access to operations-related repositories.
privacy: closed
repos:
monitoring: write
members:
- dprotaso
- upodroid
teams:
Operations WG Leads:
description: The Working Group leads for Operations
members:
- houshengbo
privacy: closed
Productivity Writers:
description: Grants write access to productivity-related repositories.
privacy: closed
repos:
.github: write
knobots: write
members:
- cardil
- upodroid
teams:
Productivity WG Leads:
description: The Working Group leads for Productivity
members:
- cardil
- upodroid
privacy: closed
Security Writers:
description: Grants write access to security-related repositories.
privacy: closed
repos:
security-guard: write
teams:
Security WG Leads:
privacy: closed
description: The Working Group leads for Security
members:
- evankanderson
- davidhadas
Serving Reviewers:
description: Receive reviews for serving-related directories
privacy: closed
members:
- izabelacg
- retocode
- skonto
Serving Triage:
description: Grants triage access to serving-related repositories.
privacy: closed
members:
- izabelacg
- retocode
- skonto
repos:
autoscaler-keda: triage
net-certmanager: triage
net-contour: triage
net-gateway-api: triage
net-http01: triage
net-istio: triage
net-kourier: triage
reconciler-test: triage
sample-controller: triage
serving-progressive-rollout: triage
Serving Writers:
description: Grants write access to serving-related repositories.
privacy: closed
repos:
autoscaler-keda: write
net-certmanager: write
net-contour: write
net-gateway-api: write
net-http01: write
net-istio: write
net-kourier: write
reconciler-test: write
sample-controller: write
serving-progressive-rollout: write
teams:
Serving Approvers:
description: The Working Group leads for Serving
members:
- ReToCode
- skonto
privacy: closed
Serving WG Leads:
description: The Working Group leads for Serving
members:
- dprotaso
privacy: closed
UX Writers:
description: Grants write access to ux related repositories.
privacy: closed
repos:
educational-game: write
teams:
UX WG Leads:
privacy: closed
description: The Working Group leads for User Experience (UX)
members:
- cali0707
- mmejia02
- zainabhusain227
- leo6leo
autoscaler-keda Approvers:
description: Approver group for autoscaler-keda - to be used in CODEOWNERS file
privacy: closed
repos:
autoscaler-keda: write
members:
- skonto
- ReToCode
backstage-plugins Reviewers:
description: Reviewer group for backstage-plugins - to be used in CODEOWNERS file
privacy: closed
members:
- aliok
- cali0707
- pierdipi
- leo6leo
backstage-plugins Writers:
description: Grants write access to backstage-plugins.
privacy: closed
repos:
backstage-plugins: write
members:
- aliok
- cali0707
- pierdipi
- leo6leo
discovery Approvers:
description: Approver group for discovery - to be used in CODEOWNERS file
privacy: closed
repos:
discovery: write
members:
- lberk
eventing-autoscaler-keda Approvers:
description: Approver group for eventing-autoscaler-keda - to be used in CODEOWNERS file
privacy: closed
repos:
eventing-autoscaler-keda: write
members: []
eventing-awssqs Approvers:
description: Approver group for eventing-awssqs - to be used in CODEOWNERS file
privacy: closed
repos:
eventing-awssqs: write
members:
- lberk
- matzew
eventing-ceph Approvers:
description: Approver group for eventing-ceph - to be used in CODEOWNERS file
privacy: closed
repos:
eventing-ceph: write
members:
- lberk
- matzew
eventing-couchdb Approvers:
description: Approver group for eventing-couchdb - to be used in CODEOWNERS file
privacy: closed
repos:
eventing-couchdb: write
members:
- lberk
- lionelvillard
- matzew
eventing-github Approvers:
description: Approver group for eventing-github - to be used in CODEOWNERS file
privacy: closed
repos:
eventing-github: write
members:
- lberk
- matzew
eventing-gitlab Approvers:
description: Approver group for eventing-gitlab - to be used in CODEOWNERS file
privacy: closed
repos:
eventing-gitlab: write
members:
- lberk
- sebgoa
- matzew
eventing-kafka Approvers:
description: Approver group for eventing-kafka - to be used in CODEOWNERS file
privacy: closed
repos:
eventing-kafka: write
members:
- aliok
- lberk
- matzew
- pierDipi
eventing-kafka-broker Approvers:
description: Approver group for eventing-kafka-broker - to be used in CODEOWNERS file
privacy: closed
repos:
eventing-kafka-broker: write
members:
- pierDipi