-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathcncf.yaml
4834 lines (4832 loc) · 172 KB
/
cncf.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
- name: aeraki-mesh
display_name: Aeraki Mesh
description: Aeraki Mesh allows you to manage any layer-7 traffic in a service mesh
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/main/projects/aerakimesh/icon/color/aerakimesh-icon-color.svg
devstats_url: https://aerakimesh.devstats.cncf.io/
accepted_at: "2022-06-14"
maturity: sandbox
repositories:
- name: aeraki
url: https://github.com/aeraki-mesh/aeraki
check_sets:
- community
- code
- name: akri
display_name: Akri
description: A Kubernetes Resource Interface for the Edge
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/main/projects/akri/icon/color/akri-icon-color.svg
logo_dark_url: https://raw.githubusercontent.com/cncf/artwork/main/projects/akri/icon/white/akri-icon-white.svg
devstats_url: https://akri.devstats.cncf.io/
accepted_at: "2021-09-14"
maturity: sandbox
repositories:
- name: akri
url: https://github.com/project-akri/akri
check_sets:
- community
- code
- name: akri-docs
url: https://github.com/project-akri/akri-docs
check_sets:
- docs
- name: antrea
display_name: Antrea
description: Kubernetes networking based on Open vSwitch
category: runtime
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/antrea/icon/color/antrea-icon-color.svg
devstats_url: https://antrea.devstats.cncf.io/
accepted_at: "2021-04-27"
maturity: sandbox
repositories:
- name: antrea
url: https://github.com/antrea-io/antrea
check_sets:
- community
- code
- name: argo
display_name: Argo
description: Open source tools for Kubernetes to run workflows, manage clusters, and do GitOps right
category: app definition
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/argo/icon/color/argo-icon-color.svg
devstats_url: https://argo.devstats.cncf.io/
accepted_at: "2020-04-07"
maturity: graduated
repositories:
- name: argo-cd
url: https://github.com/argoproj/argo-cd
check_sets:
- code
- name: argoproj
url: https://github.com/argoproj/argoproj
check_sets:
- community
- name: argo-site
url: https://github.com/argoproj/argo-site
check_sets:
- docs
- name: argo-events
url: https://github.com/argoproj/argo-events
check_sets:
- code
- name: argo-rollouts
url: https://github.com/argoproj/argo-rollouts
check_sets:
- code
- name: argo-workflows
url: https://github.com/argoproj/argo-workflows
check_sets:
- code
- name: argo-helm
url: https://github.com/argoproj/argo-helm
check_sets:
- code
- name: artifact-hub
display_name: Artifact Hub
description: Artifact Hub is a web-based application that enables finding, installing, and publishing packages and configurations for CNCF projects
category: app definition
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/artifacthub/icon/color/artifacthub-icon-color.svg
devstats_url: https://artifacthub.devstats.cncf.io/
accepted_at: "2020-06-23"
maturity: incubating
repositories:
- name: artifact-hub
url: https://github.com/artifacthub/hub
check_sets:
- community
- code
- name: athenz
display_name: Athenz
description: Open source platform for X.509 certificate based service authentication and fine grained access control in dynamic infrastructures
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/athenz/icon/color/athenz-icon-color.svg
devstats_url: https://athenz.devstats.cncf.io/
accepted_at: "2021-01-26"
maturity: sandbox
repositories:
- name: athenz
url: https://github.com/AthenZ/athenz
check_sets:
- community
- code
- name: backstage
display_name: Backstage
description: Backstage is an open platform for building developer portals
category: app definition
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/backstage/icon/color/backstage-icon-color.svg
devstats_url: https://backstage.devstats.cncf.io/
accepted_at: "2020-09-08"
maturity: incubating
repositories:
- name: backstage
url: https://github.com/backstage/backstage
check_sets:
- community
- code
- name: bfe
display_name: Beyond Front End
description: Open-source layer 7 load balancer derived from proprietary Baidu FrontEnd
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/bfe/icon/color/bfe-icon-color.svg
devstats_url: https://bfe.devstats.cncf.io/
accepted_at: "2020-06-23"
maturity: sandbox
repositories:
- name: bfe
url: https://github.com/bfenetworks/bfe
check_sets:
- community
- code
- name: buildpacks
display_name: Buildpacks
description: Cloud Native Buildpacks transform your application source code into images that can run on any cloud
category: app definition
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/buildpacks/icon/color/buildpacks-icon-color.svg
devstats_url: https://buildpacks.devstats.cncf.io/
accepted_at: "2018-10-03"
maturity: incubating
repositories:
- name: community
url: https://github.com/buildpacks/community
check_sets:
- community
- name: pack
url: https://github.com/buildpacks/pack
check_sets:
- code
- name: cdk8s
description: Cloud Development Kit for Kubernetes
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/cdk8s/icon/color/cdk8s-icon-color.svg
devstats_url: https://cdk8s.devstats.cncf.io/
accepted_at: "2020-11-10"
maturity: sandbox
repositories:
- name: cdk8s
url: https://github.com/cdk8s-team/cdk8s
check_sets:
- community
- code
- name: cdk8s-plus
url: https://github.com/cdk8s-team/cdk8s-plus
check_sets:
- code-lite
- name: cert-manager
display_name: Cloud native certificate management
description: Automatically provision and manage TLS certificates in Kubernetes
category: provisioning
home_url: https://cert-manager.io
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/cert-manager/icon/color/cert-manager-icon-color.svg
devstats_url: https://certmanager.devstats.cncf.io/
accepted_at: "2020-11-10"
maturity: graduated
repositories:
- name: community
url: https://github.com/cert-manager/community
check_sets:
- community
- name: website
url: https://github.com/cert-manager/website
check_sets:
- docs
- name: cert-manager
url: https://github.com/cert-manager/cert-manager
check_sets:
- code
- name: chaos-blade
display_name: ChaosBlade
description: An easy to use and powerful chaos engineering experiment toolkit
category: observability
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/chaosblade/icon/color/chaosblade-icon-color.svg
devstats_url: https://chaosblade.devstats.cncf.io/
accepted_at: "2021-04-27"
maturity: sandbox
repositories:
- name: chaosblade
url: https://github.com/chaosblade-io/chaosblade
check_sets:
- community
- code
- name: chaos-mesh
display_name: Chaos Mesh
description: A Chaos Engineering Platform for Kubernetes
category: observability
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/chaosmesh/icon/color/chaosmesh-icon-color.svg
logo_dark_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/chaosmesh/icon/white/chaosmesh-icon-white.svg
devstats_url: https://chaosmesh.devstats.cncf.io/
accepted_at: "2020-07-14"
maturity: incubating
repositories:
- name: chaos-mesh
url: https://github.com/chaos-mesh/chaos-mesh
check_sets:
- community
- code
- name: chubao-fs
display_name: CubeFS
description: CubeFS (formerly ChubaoFS) is a cloud native distributed file system and object store
category: runtime
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/chubaofs/icon/color/chubaofs-icon-color.svg
devstats_url: https://chubaofs.devstats.cncf.io/
accepted_at: "2019-12-17"
maturity: graduated
repositories:
- name: chubaofs
url: https://github.com/chubaofs/chubaofs
check_sets:
- community
- code
- name: cilium
display_name: Cilium
description: eBPF-based Networking, Observability, and Security
category: runtime
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/cilium/icon/color/cilium_icon-color.svg
devstats_url: https://cilium.devstats.cncf.io/
accepted_at: "2021-10-13"
maturity: graduated
repositories:
- name: ebpf
url: https://github.com/cilium/ebpf
check_sets:
- code-lite
- name: cilium
url: https://github.com/cilium/cilium
check_sets:
- community
- code
- name: hubble
url: https://github.com/cilium/hubble
check_sets:
- code-lite
- name: tetragon
url: https://github.com/cilium/tetragon
check_sets:
- code-lite
- name: cloud-custodian
display_name: Cloud Custodian
description: Rules engine for cloud security, cost optimization, and governance, DSL in yaml for policies to query, filter, and take actions on resources
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/cloudcustodian/icon/color/cloudcustodian-icon-color.svg
devstats_url: https://cloudcustodian.devstats.cncf.io/
accepted_at: "2020-06-23"
maturity: incubating
repositories:
- name: cloud-custodian
url: https://github.com/cloud-custodian/cloud-custodian
check_sets:
- community
- code
- name: cloudevents
display_name: CloudEvents
description: A specification for describing event data in a common way
category: app definition
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/cloudevents/icon/color/cloudevents-icon-color.svg
devstats_url: https://cloudevents.devstats.cncf.io/
accepted_at: "2018-05-22"
maturity: graduated
repositories:
###
# CloudEvents does not require a code checkset because the primary deliverable
# is a specification with only secondary code bases included in the project
###
- name: spec
url: https://github.com/cloudevents/spec
check_sets:
- community
- name: sdk-go
url: https://github.com/cloudevents/sdk-go
check_sets:
- code-lite
- name: sdk-javascript
url: https://github.com/cloudevents/sdk-javascript
check_sets:
- code-lite
- name: sdk-csharp
url: https://github.com/cloudevents/sdk-csharp
check_sets:
- code-lite
- name: sdk-python
url: https://github.com/cloudevents/sdk-python
check_sets:
- code-lite
- name: sdk-java
url: https://github.com/cloudevents/sdk-java
check_sets:
- code-lite
- name: clusterpedia
display_name: Clusterpedia
description: Clusterpedia is used for complex resources search across multiple clusters, support simultaneous search of a single kind of resource or multiple kinds of resources existing in multiple clusters
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/clusterpedia/icon/color/clusterpedia-icon-color.svg
devstats_url: https://clusterpedia.devstats.cncf.io
accepted_at: "2022-06-14"
maturity: sandbox
repositories:
- name: clusterpedia
url: https://github.com/clusterpedia-io/clusterpedia
check_sets:
- community
- code
- name: cni
display_name: Container Network Interface
description: Container Network Interface - networking for Linux containers
category: runtime
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/cni/icon/color/cni-icon-color.svg
devstats_url: https://cni.devstats.cncf.io/
accepted_at: "2017-05-23"
maturity: incubating
repositories:
- name: cni
url: https://github.com/containernetworking/cni
check_sets:
- community
- code
- name: cni-genie
display_name: CNI-Genie
description: CNI-Genie for choosing pod network of your choice during deployment time. Supported pod networks - Calico, Flannel, Romana, Weave
category: runtime
logo_url: https://landscape.cncf.io/logos/546205f25e890de432a8d8f807deb622de9ce62720c47b7a58791f6da4212f33.svg
devstats_url: https://cnigenie.devstats.cncf.io/
accepted_at: "2020-06-23"
maturity: sandbox
repositories:
- name: cni-genie
url: https://github.com/cni-genie/CNI-Genie
check_sets:
- community
- code
- name: confidential-containers
display_name: Confidential Containers
description: Confidential Containers is an open source community working to enable cloud native confidential computing by leveraging Trusted Execution Environments to protect containers and data
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/confidential-containers/icon/color/confidential-containers-icon.svg
devstats_url: https://confidentialcontainers.devstats.cncf.io/
accepted_at: "2022-03-08"
maturity: sandbox
repositories:
- name: documentation
url: https://github.com/confidential-containers/documentation
check_sets:
- docs
- name: community
url: https://github.com/confidential-containers/community
check_sets:
- community
- name: operator
url: https://github.com/confidential-containers/operator
check_sets:
- code-lite
- name: containerd
description: An industry-standard container runtime with an emphasis on simplicity, robustness and portability
category: runtime
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/containerd/icon/color/containerd-icon-color.svg
logo_dark_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/containerd/icon/white/containerd-icon-white.svg
devstats_url: https://containerd.devstats.cncf.io
accepted_at: "2017-03-29"
maturity: graduated
repositories:
- name: containerd
url: https://github.com/containerd/containerd
check_sets:
- community
- code
- name: contour
display_name: Contour
description: Contour is an open source Kubernetes ingress controller providing the control plane for the Envoy edge and service proxy
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/contour/icon/color/contour-icon-color.svg
devstats_url: https://contour.devstats.cncf.io/
accepted_at: "2020-07-07"
maturity: incubating
repositories:
- name: contour
url: https://github.com/projectcontour/contour
check_sets:
- code
- name: community
url: https://github.com/projectcontour/community
check_sets:
- community
- name: core-dns
display_name: CoreDNS
description: "CoreDNS is a DNS server. It is written in Go. It can be used in a multitude of environments because of its flexibility. "
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/coredns/icon/color/coredns-icon-color.svg
devstats_url: https://coredns.devstats.cncf.io
accepted_at: "2017-02-27"
maturity: graduated
repositories:
- name: coredns
url: https://github.com/coredns/coredns
check_sets:
- community
- code
- name: cortex
display_name: Cortex
description: A multitenant, horizontally scalable Prometheus as a Service
category: observability
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/cortex/icon/color/cortex-icon-color.svg
devstats_url: https://cortex.devstats.cncf.io/
accepted_at: "2018-09-20"
maturity: incubating
repositories:
- name: cortex
url: https://github.com/cortexproject/cortex
check_sets:
- community
- code
- name: cri-o
display_name: CRI-O
description: Open Container Initiative-based implementation of Kubernetes Container Runtime Interface
category: runtime
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/crio/icon/color/crio-icon-color.svg
devstats_url: https://crio.devstats.cncf.io/
accepted_at: "2019-04-08"
maturity: graduated
repositories:
- name: cri-o
url: https://github.com/cri-o/cri-o
check_sets:
- community
- code
- name: crossplane
display_name: Crossplane
description: Compose cloud infrastructure and services into custom platform APIs
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/crossplane/icon/color/crossplane-icon-color.svg
devstats_url: https://crossplane.devstats.cncf.io/
accepted_at: "2020-06-23"
maturity: incubating
repositories:
- name: crossplane
url: https://github.com/crossplane/crossplane
check_sets:
- community
- code
- name: dapr
display_name: Distributed Application Runtime
description: Dapr is a portable, event-driven, runtime for building distributed applications across cloud and edge
category: serverless
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/dapr/icon/color/dapr-icon-color.svg
devstats_url: https://dapr.devstats.cncf.io/
accepted_at: "2021-11-03"
maturity: graduated
repositories:
- name: dapr
url: https://github.com/dapr/dapr
check_sets:
- community
- code
- name: devfile
display_name: Devfile
description: An open standard defining containerized development environments that enables developer tools to simplify and accelerate workflows
category: app definition
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/devfile/icon/color/devfile-icon-color.svg
logo_dark_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/devfile/icon/white/devfile-icon-white.svg
devstats_url: https://devfile.devstats.cncf.io/
accepted_at: "2021-01-11"
maturity: sandbox
repositories:
- name: registry
url: https://github.com/devfile/registry
check_sets:
- community
- name: library
url: https://github.com/devfile/library
check_sets:
- code
- name: api
url: https://github.com/devfile/api
check_sets:
- code
- name: registry-operator
url: https://github.com/devfile/registry-operator
check_sets:
- code
- name: registry-support
url: https://github.com/devfile/registry-support
check_sets:
- code
- name: devfile-web
url: https://github.com/devfile/devfile-web
check_sets:
- code
- name: alizer
url: https://github.com/devfile/alizer
check_sets:
- code
- name: devworkspace-operator
url: https://github.com/devfile/devworkspace-operator
check_sets:
- code
- name: developer-images
url: https://github.com/devfile/developer-images
check_sets:
- code-lite
- name: devstream
display_name: DevStream
description: "DevStream: the open-source DevOps toolchain manager (DTM)"
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/devstream/icon/color/devstream-icon-color.svg
devstats_url: https://devstream.teststats.cncf.io/
accepted_at: "2022-06-14"
maturity: sandbox
repositories:
- name: devstream
url: https://github.com/devstream-io/devstream
check_sets:
- community
- code
- name: dex
display_name: Dex
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/dex/icon/color/dex-icon-color.svg
devstats_url: https://dex.devstats.cncf.io/
accepted_at: "2020-06-23"
maturity: sandbox
repositories:
- name: dex
url: https://github.com/dexidp/dex
check_sets:
- community
- code
- name: dragonfly
display_name: Dragonfly
description: Dragonfly is an intelligent P2P based image and file distribution system, it also provides a variety of enterprise-level (efficiency, stability, safety, low-cost) product features
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/dragonfly/icon/color/dragonfly-icon-color.svg
devstats_url: https://dragonfly.devstats.cncf.io/
accepted_at: "2018-11-15"
maturity: incubating
repositories:
- name: dragonfly2
url: https://github.com/dragonflyoss/Dragonfly2
check_sets:
- community
- code
- name: emissary-ingress
display_name: Emissary-Ingress
description: open source Kubernetes-native API gateway for microservices built on the Envoy Proxy
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/emissary-ingress/icon/color/emissary-ingress-icon-color.svg
logo_dark_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/emissary-ingress/icon/white/emissary-ingress-icon-white.svg
devstats_url: https://emissaryingress.devstats.cncf.io/
accepted_at: "2021-04-14"
maturity: incubating
repositories:
- name: emissary
url: https://github.com/emissary-ingress/emissary
check_sets:
- code
- name: community
url: https://github.com/emissary-ingress/community
check_sets:
- community
- name: envoy
display_name: Envoy
description: Envoy is an open source edge and service proxy, designed for cloud-native applications
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/envoy/icon/color/envoy-icon-color.svg
devstats_url: https://envoy.devstats.cncf.io/
accepted_at: "2017-09-13"
maturity: graduated
repositories:
- name: go-control-panel
url: https://github.com/envoyproxy/go-control-plane
check_sets:
- code-lite
- name: envoy
url: https://github.com/envoyproxy/envoy
check_sets:
- community
- code
- name: java-control-panel
url: https://github.com/envoyproxy/java-control-plane
check_sets:
- code-lite
- name: xds-relay
url: https://github.com/envoyproxy/xds-relay
check_sets:
- code-lite
- name: envoy-website
url: https://github.com/envoyproxy/envoy-website
check_sets:
- docs
- name: etcd
display_name: etcd
description: Distributed reliable key-value store for the most critical data of a distributed system
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/etcd/icon/color/etcd-icon-color.svg
devstats_url: https://etcd.devstats.cncf.io/
accepted_at: "2018-12-11"
maturity: graduated
repositories:
- name: etcd
url: https://github.com/etcd-io/etcd
check_sets:
- community
- code
- name: jetcd
url: https://github.com/etcd-io/jetcd
check_sets:
- code-lite
- name: dbtester
url: https://github.com/etcd-io/dbtester
check_sets:
- code-lite
- name: etcdlabs
url: https://github.com/etcd-io/etcdlabs
check_sets:
- code-lite
- name: zetcd
url: https://github.com/etcd-io/zetcd
check_sets:
- code-lite
- name: website
url: https://github.com/etcd-io/website
check_sets:
- docs
- name: external-dns
display_name: ExternalDNS
description: Configure external DNS servers (AWS Route53, Google CloudDNS and others) for Kubernetes Ingresses and Services
category: orchestration
logo_url: https://github.com/kubernetes-sigs/external-dns/raw/master/docs/img/external-dns.png
repositories:
- name: external-dns
url: https://github.com/kubernetes-sigs/external-dns
check_sets:
- community
- code
- name: falco
display_name: Falco
description: Falco, the cloud-native runtime security project, is the de facto Kubernetes threat detection engine
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/falco/icon/color/falco-icon-color.svg
devstats_url: https://falco.devstats.cncf.io/
accepted_at: "2018-10-10"
maturity: graduated
repositories:
- name: falco
url: https://github.com/falcosecurity/falco
check_sets:
- community
- code
- name: falcosidekick
url: https://github.com/falcosecurity/falcosidekick
check_sets:
- code-lite
- name: flagger
display_name: Flagger
description: Progressive delivery Kubernetes operator (Canary, A/B Testing and Blue/Green deployments)
category: app definition
home_url: https://docs.flagger.app/
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/flux/flagger/icon/color/flagger-icon-color.svg
accepted_at: "2019-07-15"
maturity: incubating
repositories:
- name: flagger
url: https://github.com/fluxcd/flagger
check_sets:
- community
- code
- name: fluentd
display_name: Fluentd
description: Fluentd is an open source data collector for unified logging layer
category: observability
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/fluentd/icon/color/fluentd-icon-color.svg
devstats_url: https://fluentd.devstats.cncf.io/
accepted_at: "2016-11-08"
maturity: graduated
repositories:
- name: fluent-bit
url: https://github.com/fluent/fluent-bit
check_sets:
- code-lite
- name: fluentd
url: https://github.com/fluent/fluentd
check_sets:
- community
- code
- name: fluent-bit-docs
url: https://github.com/fluent/fluent-bit-docs
check_sets:
- docs
- name: fluid
display_name: Fluid
description: Fluid is an orchestration platform for elastic data abstraction and acceleration in cloud native environment
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/fluid/icon/color/fluid-icon-color.svg
devstats_url: https://fluid.devstats.cncf.io/
accepted_at: "2021-04-27"
maturity: sandbox
repositories:
- name: fluid
url: https://github.com/fluid-cloudnative/fluid
check_sets:
- community
- code
- name: flux-project
display_name: Flux
description: Open and extensible continuous delivery solution for Kubernetes. Powered by GitOps Toolkit
category: app definition
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/flux/icon/color/flux-icon-color.svg
devstats_url: https://flux.devstats.cncf.io/
accepted_at: "2019-07-15"
maturity: graduated
repositories:
- name: community
url: https://github.com/fluxcd/community
check_sets:
- community
- name: flux2
url: https://github.com/fluxcd/flux2
check_sets:
- code
- name: gateway-api
display_name: Kubernetes Gateway API
description: The Gateway API is a part of SIG Network, and this repository contains the specification and Custom Resource Definitions (CRDs).
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/kubernetes/icon/color/kubernetes-icon-color.svg
repositories:
- name: gateway-api
url: https://github.com/kubernetes-sigs/gateway-api
check_sets:
- code
- name: grpc
display_name: gRPC
description: A high performance, open source universal RPC framework
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/grpc/icon/color/grpc-icon-color.svg
logo_dark_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/grpc/icon/white/grpc-icon-white.svg
devstats_url: https://grpc.devstats.cncf.io/
accepted_at: "2017-02-16"
maturity: incubating
repositories:
- name: grpc
url: https://github.com/grpc/grpc
check_sets:
- community
- code
- name: grpc.io
url: https://github.com/grpc/grpc.io
check_sets:
- docs
- name: grpc-node
url: https://github.com/grpc/grpc-node
check_sets:
- code-lite
- name: grpc-go
url: https://github.com/grpc/grpc-go
check_sets:
- code-lite
- name: grpc-web
url: https://github.com/grpc/grpc-web
check_sets:
- code-lite
- name: grpc-java
url: https://github.com/grpc/grpc-java
check_sets:
- code-lite
- name: harbor
display_name: Harbor
description: An open source trusted cloud native registry project that stores, signs, and scans content
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/harbor/icon/color/harbor-icon-color.svg
devstats_url: https://harbor.devstats.cncf.io/
accepted_at: "2018-07-31"
maturity: graduated
repositories:
- name: harbor
url: https://github.com/goharbor/harbor
check_sets:
- code
- name: community
url: https://github.com/goharbor/community
check_sets:
- community
- name: helm
display_name: Helm
description: The Kubernetes Package Manager
category: app definition
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/helm/icon/color/helm-icon-color.svg
logo_dark_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/helm/icon/white/helm-icon-white.svg
devstats_url: https://helm.devstats.cncf.io/
accepted_at: "2018-06-01"
maturity: graduated
repositories:
- name: helm
url: https://github.com/helm/helm
check_sets:
- code
- name: community
url: https://github.com/helm/community
check_sets:
- community
- name: in-toto
description: in-toto is a framework to protect supply chain integrity
category: provisioning
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/in-toto/icon/color/in-toto-icon-color.svg
devstats_url: https://intoto.devstats.cncf.io/
accepted_at: "2019-08-21"
maturity: incubating
repositories:
- name: in-toto
url: https://github.com/in-toto/in-toto
check_sets:
- code
- name: community
url: https://github.com/in-toto/community
check_sets:
- community
- name: in-toto-golang
url: https://github.com/in-toto/in-toto-golang
check_sets:
- code
- name: attestation
url: https://github.com/in-toto/attestation
check_sets:
- code-lite
- name: scai-demos
url: https://github.com/in-toto/scai-demos
check_sets:
- code-lite
- name: witness
url: https://github.com/in-toto/witness
check_sets:
- code
- name: go-witness
url: https://github.com/in-toto/go-witness
check_sets:
- code
- name: archivista
url: https://github.com/in-toto/archivista
check_sets:
- code
- name: specification
url: https://github.com/in-toto/specification
check_sets:
- docs
- name: in-toto.io
url: https://github.com/in-toto/in-toto.io
check_sets:
- docs
- name: inclavare
display_name: Inclavare Containers
description: A novel container runtime, aka confidential container, for cloud-native confidential computing and enclave runtime ecosystem
category: runtime
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/inclavare/icon/color/inclavare-icon-color.svg
devstats_url: https://inclavarecontainers.devstats.cncf.io/
accepted_at: "2021-09-14"
maturity: sandbox
repositories:
- name: inclavare-containers
url: https://github.com/alibaba/inclavare-containers
check_sets:
- community
- code
- name: jaeger
display_name: Jaeger
description: "Jaeger: open source, end-to-end distributed tracing. Monitor and troubleshoot transactions in complex distributed systems"
category: observability
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/jaeger/icon/color/jaeger-icon-color.svg
devstats_url: https://jaeger.devstats.cncf.io/
accepted_at: "2017-09-13"
maturity: graduated
repositories:
- name: jaeger
url: https://github.com/jaegertracing/jaeger
check_sets:
- community
- code
- name: jaeger-ui
url: https://github.com/jaegertracing/jaeger-ui
check_sets:
- code-lite
- name: documentation
url: https://github.com/jaegertracing/documentation
check_sets:
- docs
- name: k3s
display_name: K3s
description: The certified Kubernetes distribution built for IoT & Edge computing
category: platform
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/k3s/icon/color/k3s-icon-color.svg
devstats_url: https://k3s.devstats.cncf.io/
accepted_at: "2020-08-19"
maturity: sandbox
repositories:
- name: k3s
url: https://github.com/k3s-io/k3s
check_sets:
- community
- code
- name: k8gb
display_name: K8GB
description: A cloud native Kubernetes Global Balancer
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/k8gb/icon/color/k8gb-icon-color.svg
devstats_url: https://k8gb.devstats.cncf.io/
accepted_at: "2021-03-30"
maturity: sandbox
repositories:
- name: k8gb
url: https://github.com/k8gb-io/k8gb
check_sets:
- community
- code
- name: k8up
display_name: K8up
description: K8up is a Kubernetes Operator distributed via a Helm chart, compatible with OpenShift and plain Kubernetes
category: runtime
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/k8up/icon/k8up-icon-color.svg
devstats_url: https://k8up.devstats.cncf.io/
accepted_at: "2021-11-16"
maturity: sandbox
repositories:
- name: k8up
url: https://github.com/k8up-io/k8up
check_sets:
- community
- code
- name: karmada
display_name: Karmada
description: Open, Multi-Cloud, Multi-Cluster Kubernetes Orchestration
category: orchestration
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/karmada/icon/color/karmada-icon-color.svg
devstats_url: https://karmada.devstats.cncf.io/
accepted_at: "2021-09-14"
maturity: incubating
repositories:
- name: karmada
url: https://github.com/karmada-io/karmada
check_sets:
- code
- name: community
url: https://github.com/karmada-io/community
check_sets:
- community
- name: website
url: https://github.com/karmada-io/website
check_sets:
- docs
- name: karpenter
display_name: Karpenter
description: Karpenter is a Kubernetes Node Autoscaler built for flexibility, performance, and simplicity.
category: orchestration
logo_url: https://raw.githubusercontent.com/kubernetes/kubernetes/master/logo/logo.png
repositories:
- name: karpenter
url: https://github.com/kubernetes-sigs/karpenter
check_sets:
- community
- code
- name: keda
display_name: KEDA
description: KEDA is a Kubernetes-based Event Driven Autoscaling component. It provides event driven scale for any container running in Kubernetes
category: serverless
logo_url: https://raw.githubusercontent.com/cncf/artwork/master/projects/keda/icon/color/keda-icon-color.svg
devstats_url: https://keda.devstats.cncf.io/
accepted_at: "2020-03-09"
maturity: graduated
repositories:
- name: keda
url: https://github.com/kedacore/keda
check_sets:
- community
- code
- name: keda-docs
url: https://github.com/kedacore/keda-docs