-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.yml
1696 lines (1694 loc) · 85.6 KB
/
data.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
# Copyright (C) Nicolas Lamirault <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
---
landscape:
- category:
name: Provisioning
subcategories:
- subcategory:
name: Automation & Configuration
items:
- item:
name: Ansible
description: >-
Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain.
Automate everything from code deployment to network configuration to cloud management, in a language that approaches plain English, using SSH, with no agents to install on remote systems
homepage_url: https://www.ansible.com/
repo_url: https://github.com/ansible/ansible
logo: ansible.svg
twitter: https://twitter.com/ansible
crunchbase: https://www.crunchbase.com/organization/red-hat
- item:
name: Terraform
description: >-
Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available
tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.
homepage_url: https://www.terraform.io/
repo_url: https://github.com/hashicorp/terraform
logo: terraform.svg
crunchbase: https://www.crunchbase.com/organization/hashicorp
- subcategory:
name: Container Registry
items:
- item:
name: Alibaba Cloud Container Registry (ACR)
description: >-
Alibaba Cloud Container Registry (ACR) is a cloud-native artifacts management platform that helps your team build, manage, and ship containerized
applications,
also provides vulnerability analysis, global synchronization, content trust, and more functionalities out of the box.
homepage_url: https://www.alibabacloud.com/zh/product/container-registry
logo: alibaba-cloud-container-registry.svg
crunchbase: https://www.crunchbase.com/organization/alibaba-cloud
- item:
name: Amazon Elastic Container Registry (ECR)
description: >-
Amazon Elastic Container Registry (ECR) is a fully-managed Docker container registry that makes it easy for developers to store, manage, and
deploy Docker container images.
homepage_url: https://aws.amazon.com/ecr/
logo: amazon-ecr.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- item:
name: Azure Registry
description: >-
Azure Container Registry allows you to store images for all types of container deployments including DC/OS, Docker Swarm, Kubernetes, and Azure
services such as App Service, Batch, Service Fabric, and others.
homepage_url: https://azure.microsoft.com/en-us/services/container-registry/
logo: azure-registry.svg
twitter: https://twitter.com/azure
crunchbase: https://www.crunchbase.com/organization/microsoft
- item:
name: Google Container Registry
description: >-
Container Registry is a single place for your team to manage Docker images, perform vulnerability analysis, and decide who can access what with
fine-grained access control.
homepage_url: https://cloud.google.com/container-registry/
logo: google-container-registry.svg
twitter: https://twitter.com/GCPcloud
crunchbase: https://www.crunchbase.com/organization/google
- item:
name: IBM Cloud Container Registry
description: Detect vulnerabilities before images are ever deployed to containers. Store and distribute Docker images in your managed private registry.
homepage_url: https://www.ibm.com/cloud/container-registry
logo: ibm-cloud-container-registry.svg
twitter: https://twitter.com/IBMCloud
crunchbase: https://www.crunchbase.com/organization/ibm
- subcategory:
name: Security & Compliance
items:
- item:
name: cert-manager
description: >-
Automatically provision and manage TLS certificates in Kubernetes
homepage_url: https://cert-manager.io/
project: incubating
repo_url: https://github.com/cert-manager/cert-manager
logo: jetstack-cert-manager.svg
twitter: https://twitter.com/CertManager
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2020-11-10'
incubating: '2022-09-19'
dev_stats_url: https://certmanager.devstats.cncf.io/
slack_url: https://kubernetes.slack.com/messages/cert-manager
clomonitor_name: cert-manager
- item:
name: Chef InSpec
description: >-
Chef Infra, a powerful automation platform that transforms infrastructure into code automating how infrastructure is configured, deployed and managed across any environment, at any scale
homepage_url: https://community.chef.io/tools/chef-inspec
repo_url: https://github.com/inspec/inspec
logo: chef_inspec.svg
crunchbase: https://www.crunchbase.com/organization/chef
- item:
name: Dex
description: >-
OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors
homepage_url: https://dexidp.io/
project: sandbox
repo_url: https://github.com/dexidp/dex
logo: dex.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2020-06-25'
dev_stats_url: https://dex.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#dex-logos
clomonitor_name: dex
- item:
name: external-secrets
description: >-
External Secrets Operator reads information from a third-party service like AWS Secrets Manager and automatically injects the values as Kubernetes Secrets.
homepage_url: https://external-secrets.io/
project: sandbox
repo_url: https://github.com/external-secrets/external-secrets
logo: external-secrets.svg
twitter: https://twitter.com/ExtSecretsOptr
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2022-07-26'
dev_stats_url: https://externalsecretsoperator.devstats.cncf.io/
clomonitor_name: external-secrets
- item:
name: Falco
description: >-
Cloud Native Runtime Security
homepage_url: https://falco.org/
project: incubating
repo_url: https://github.com/falcosecurity/falco
logo: falco.svg
twitter: https://twitter.com/falco_org
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2018-10-10'
incubating: '2020-01-08'
dev_stats_url: https://falco.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/incubating.md#falco-logos
slack_url: https://kubernetes.slack.com/messages/falco
clomonitor_name: falco
audits:
- date: '2019-06-07'
type: security
url: https://github.com/falcosecurity/falco/blob/dev/audits/SECURITY_AUDIT_2019_07.pdf
vendor: Cure53
- date: '2023-03-22'
type: security
url: https://falco.org/blog/falco-security-audit-2023/
vendor: OSTIF
# - item:
# name: Kubewarden
# homepage_url: https://www.kubewarden.io
# project: sandbox
# repo_url: https://github.com/kubewarden/kubewarden-controller
# logo: kubewarden.svg
# twitter: https://twitter.com/kubewarden
# crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
# allow_duplicate_repo: true
# extra:
# accepted: '2022-06-17'
# blog_url: https://kubewarden.io/blog
# slack_url: https://kubernetes.slack.com/
# dev_stats_url: https://kubewarden.devstats.cncf.io/
# chat_channel: '#kubewarden'
# clomonitor_name: kubewarden
- item:
name: Kyverno
description: >-
Cloud Native Policy Management
homepage_url: https://kyverno.io/
project: incubating
repo_url: https://github.com/kyverno/kyverno
logo: kyverno.svg
twitter: https://twitter.com/kyverno
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2020-11-10'
incubating: '2022-07-13'
dev_stats_url: https://kyverno.devstats.cncf.io/
slack_url: https://kubernetes.slack.com/
chat_channel: '#kyverno'
clomonitor_name: kyverno
audits:
- date: '2023-09-06'
type: fuzzing
url: https://main.kyverno.io/blog/2023/09/06/kyverno-completes-fuzzing-security-audit/kyverno-2023-fuzzing-security-audit.pdf
vendor: Ada Logics
- date: '2023-11-28'
type: security
url: https://github.com/kyverno/website/blob/main/content/en/blog/general/2023-security-audit/kyverno-2023-security-audit-report.pdf
vendor: Ada Logics
# - item:
# name: Open Policy Agent (OPA)
# homepage_url: https://www.openpolicyagent.org/
# project: graduated
# repo_url: https://github.com/open-policy-agent/opa
# logo: opa.svg
# twitter: https://twitter.com/openpolicyagent
# crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
# allow_duplicate_repo: true
# extra:
# accepted: '2018-03-29'
# incubating: '2019-04-02'
# graduated: '2021-01-29'
# cncf_tags:
# - https://github.com/cncf/tag-security
# dev_stats_url: https://opa.devstats.cncf.io/
# artwork_url: https://github.com/cncf/artwork/blob/master/examples/incubating.md#opa-logos
# blog_url: https://blog.openpolicyagent.org/
# slack_url: http://slack.openpolicyagent.org/
# clomonitor_name: opa
# audits:
# - date: '2018-08-30'
# type: security
# url: https://cure53.de/pentest-report_opa.pdf
# vendor: Cure53
- item:
name: Tetragon
description: >-
eBPF-based Security Observability and Runtime Enforcement
homepage_url: https://github.com/cilium/tetragon
repo_url: https://github.com/cilium/tetragon
logo: tetragon-logo-wormark.svg
twitter: https://twitter.com/ciliumproject
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2021-10-13'
dev_stats_url: https://cilium.devstats.cncf.io/
slack_url: https://cilium.herokuapp.com/
parent_project: Cilium
- item:
name: Trivy-Operator
description: >-
Trivy-Operator operate trivy security tool on the Kubernetes cluster and incorporate it outputs into Kubernetes CRDs (Custom Resource Definitions)
and from there, making security reports accessible through the Kubernetes API
homepage_url: https://github.com/aquasecurity/trivy-operator
repo_url: https://github.com/aquasecurity/trivy-operator
logo: trivy.svg
twitter: https://twitter.com/aquasecteam
crunchbase: https://www.crunchbase.com/organization/aquasecurity
- subcategory:
name: Key Management
items:
# - item:
# name: OAuth2 Proxy
# homepage_url: https://oauth2-proxy.github.io/oauth2-proxy/
# repo_url: https://github.com/oauth2-proxy/oauth2-proxy
# logo: oauth2-proxy.svg
# crunchbase: https://www.crunchbase.com/organization/oauth2-proxy
# - item:
# name: Teleport
# homepage_url: https://goteleport.com
# repo_url: https://github.com/gravitational/teleport
# logo: teleport.svg
# crunchbase: https://www.crunchbase.com/organization/gravitational
- item:
name: Vault
description: >-
A tool for secrets management, encryption as a service, and privileged access management
homepage_url: https://www.vaultproject.io/
repo_url: https://github.com/hashicorp/vault
logo: vault.svg
crunchbase: https://www.crunchbase.com/organization/hashicorp
- category:
name: Runtime
subcategories:
- subcategory:
name: Cloud Native Storage
items:
- item:
name: Alibaba Cloud File Storage
description: >-
Alibaba Cloud File Storage enables you to have a distributed file system with unlimited capacity and performance scaleing with a single
namespace,high-performance, high reliability, high availabily and scalable file storage services.
homepage_url: https://www.alibabacloud.com/product/nas
logo: alibaba-cloud-file-storage.svg
crunchbase: https://www.crunchbase.com/organization/alibaba-cloud
- item:
name: Alibaba Cloud File Storage CPFS
description: >-
Alibaba Cloud File Storage CPFS is a scale-out parallel file system for Artifical intelligence(AI), High performance computing(HPC) workload while
ensuring security, reliability, data effciency and high performance.
homepage_url: https://www.alibabacloud.com/error
logo: alibaba-cloud-file-storage-cpfs.svg
crunchbase: https://www.crunchbase.com/organization/alibaba-cloud
- item:
name: Amazon Elastic Block Store (EBS)
description: >-
Amazon Elastic Block Store (EBS) is an easy to use, high performance block storage service designed for use with Amazon Elastic Compute Cloud
(EC2) for both throughput and transaction intensive workloads at any scale.
homepage_url: https://aws.amazon.com/ebs/
logo: amazon-elastic-block-store.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- item:
name: Azure Disk Storage
description: Get HDD/SSD durability, scalability, availability, and security you need for all your workloads—from mission-critical workloads to test scenarios.
homepage_url: https://azure.microsoft.com/en-us/services/storage/disks/
logo: azure-disk-storage.svg
twitter: https://twitter.com/azure
crunchbase: https://www.crunchbase.com/organization/microsoft
- item:
name: Container Storage Interface (CSI)
homepage_url: https://github.com/container-storage-interface
repo_url: https://github.com/container-storage-interface/spec
logo: container-storage-interface-csi.svg
twitter: https://twitter.com/GCPcloud
crunchbase: https://www.crunchbase.com/organization/google
- item:
name: Google Persistent Disk
description: >-
Google Persistent Disk is durable and high performance block storage for the Google Cloud Platform. Persistent Disk provides SSD and HDD storage
which can be attached to instances running in either Google Compute Engine or Google Kubernetes Engine. Storage volumes can be transparently
resized, quickly backed up, and offer the ability to support simultaneous readers.
homepage_url: https://cloud.google.com/persistent-disk
logo: google-persistent-disk.svg
twitter: https://twitter.com/GCPcloud
crunchbase: https://www.crunchbase.com/organization/google
- item:
name: IBM Storage
description: >-
IBM Storage for containers, Kubernetes, and Red Hat OpenShift delivers native cloud acceleration to help you build powerful, agile, and persistent
storage for private cloud environments.
homepage_url: https://www.ibm.com/storage/containers
logo: ibm-storage.svg
twitter: https://twitter.com/IBMStorage
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: Longhorn
description: Cloud-native distributed storage for Kubernetes
homepage_url: https://longhorn.io/
project: incubating
repo_url: https://github.com/longhorn/longhorn
project_org: https://github.com/longhorn
logo: longhorn.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
joined: '2019-10-11'
extra:
accepted: '2019-10-11'
incubating: '2021-11-04'
dev_stats_url: https://longhorn.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#longhorn-logos
clomonitor_name: longhorn
- subcategory:
name: Container Runtime
items:
- item:
name: containerd
description: >-
An open and reliable container runtime
homepage_url: https://containerd.io/
project: graduated
repo_url: https://github.com/containerd/containerd
logo: containerd.svg
twitter: https://twitter.com/containerd
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
allow_duplicate_repo: true
extra:
accepted: '2017-03-29'
incubating: '2017-03-29'
graduated: '2019-02-28'
cncf_tags:
- https://github.com/cncf/tag-runtime
dev_stats_url: https://containerd.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/graduated.md#containerd-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/containerd
slack_url: https://slack.cncf.io/
chat_channel: '#containerd'
clomonitor_name: containerd
audits:
- date: '2023-03-02'
type: fuzzing
url: https://github.com/containerd/containerd.io/blob/main/static/img/ADA-fuzzing-audit-21-22.pdf
vendor: Ada Logics
- item:
name: CRI-O
description: >-
Open Container Initiative-based implementation of Kubernetes Container Runtime Interface
homepage_url: https://cri-o.io/
project: graduated
repo_url: https://github.com/cri-o/cri-o
logo: cri-o.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
allow_duplicate_repo: true
extra:
accepted: '2019-04-08'
incubating: '2019-04-08'
graduated: '2023-07-19'
cncf_tags:
- https://github.com/cncf/tag-runtime
dev_stats_url: https://crio.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/incubating.md#cri-o-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/cri-o
blog_url: https://medium.com/cri-o
slack_url: https://kubernetes.slack.com/messages/CAZH62UR1
clomonitor_name: cri-o
audits:
- date: '2022-06-06'
type: fuzzing
url: https://github.com/etcd-io/etcd/blob/main/security/FUZZING_AUDIT_2022.PDF
vendor: ADA Logics
- item:
name: Firecracker
description: >-
Secure and fast microVMs for serverless computing.
homepage_url: https://firecracker-microvm.github.io/
repo_url: https://github.com/firecracker-microvm/firecracker
logo: firecracker.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- item:
name: gVisor
description: >-
Application Kernel for Containers
homepage_url: https://gvisor.dev/
repo_url: https://github.com/google/gvisor
logo: gvisor.svg
twitter: https://twitter.com/GCPcloud
crunchbase: https://www.crunchbase.com/organization/google
- item:
name: Lima
description: Linux virtual machines, typically on macOS, for running containerd
homepage_url: https://github.com/lima-vm/lima
project: sandbox
repo_url: https://github.com/lima-vm/lima
logo: lima.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2022-09-14'
dev_stats_url: https://lima.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#lima-logos
slack_url: https://slack.cncf.io/
chat_channel: '#lima'
clomonitor_name: lima
- item:
name: WasmEdge Runtime
description: >-
WasmEdge is a lightweight, high-performance, and extensible WebAssembly runtime for cloud native, edge,
and decentralized applications. It powers serverless apps, embedded functions, microservices, smart contracts, and IoT devices.
homepage_url: https://wasmedge.org/
project: sandbox
repo_url: https://github.com/WasmEdge/WasmEdge
logo: wasmedge.svg
twitter: https://twitter.com/realwasmedge
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
allow_duplicate_repo: true
extra:
accepted: '2021-04-28'
annual_review_url: https://github.com/cncf/toc/pull/1109
annual_review_date: '2023-07-04'
dev_stats_url: https://wasmedge.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#wasmedgeruntime-logos
clomonitor_name: wasm-edge
- subcategory:
name: Cloud Native Network
items:
- item:
name: Cilium
description: >-
eBPF-based Networking, Security, and Observability
homepage_url: https://cilium.io/
project: graduated
repo_url: https://github.com/cilium/cilium
url_for_bestpractices: https://bestpractices.coreinfrastructure.org/en/projects/1269
logo: cilium.svg
twitter: https://twitter.com/ciliumproject
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2021-10-13'
incubating: '2021-10-13'
graduated: '2023-10-11'
dev_stats_url: https://cilium.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/incubating.md#cilium-logos
slack_url: https://cilium.herokuapp.com/
clomonitor_name: cilium
audits:
- date: '2023-02-13'
type: security
url: https://github.com/cilium/cilium.io/blob/main/Security-Reports/CiliumSecurityAudit2022.pdf
vendor: Ada Logics
- date: '2023-02-13'
type: fuzzing
url: https://github.com/cilium/cilium.io/blob/main/Security-Reports/CiliumFuzzingAudit2022.pdf
vendor: Ada Logics
- item:
name: Container Network Interface (CNI)
description: >-
Container Network Interface - networking for Linux containers
homepage_url: https://www.cni.dev/
project: incubating
repo_url: https://github.com/containernetworking/cni
logo: container-network-interface-cni.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2017-05-23'
incubating: '2017-05-23'
dev_stats_url: https://cni.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/incubating.md#cni-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/cni
mailing_list_url: https://groups.google.com/forum/#!forum/cni-dev
slack_url: https://containernetworking.slack.com
specification: true
clomonitor_name: cni
- category:
name: Orchestration & Management
subcategories:
- subcategory:
name: Scheduling & Orchestration
items:
- item:
name: Amazon Elastic Container Service (ECS)
description: >-
Amazon Elastic Container Service (Amazon ECS) is a highly scalable, high-performance container orchestration service that supports Docker
containers and allows you to easily run and scale containerized applications on AWS.
homepage_url: https://aws.amazon.com/ecs/
logo: amazon-ecs.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- item:
name: Azure Service Fabric
description: >-
Service Fabric is a distributed systems platform for packaging, deploying, and managing stateless and stateful
distributed applications and containers at large scale.
homepage_url: https://docs.microsoft.com/en-us/azure/service-fabric/
repo_url: https://github.com/Microsoft/service-fabric
logo: azure-service-fabric.svg
twitter: https://twitter.com/azure
crunchbase: https://www.crunchbase.com/organization/microsoft
- item:
name: Crossplane
description: >-
Crossplane is the cloud native control plane framework that allows you to build control planes without needing to write code.
Crossplane has a highly extensible backend that enables you to orchestrate applications and infrastructure no matter where they
run and a highly configurable frontend that lets you define the declarative API it offers.
homepage_url: https://crossplane.io/
project: incubating
repo_url: https://github.com/crossplane/crossplane
logo: crossplane.svg
twitter: https://twitter.com/crossplane_io
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2020-06-25'
incubating: '2021-09-14'
dev_stats_url: https://crossplane.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#crossplane
youtube_url: https://www.youtube.com/channel/UC19FgzMBMqBro361HbE46Fw
clomonitor_name: crossplane
audits:
- date: '2023-03-23'
type: fuzzing
url: https://github.com/crossplane/crossplane/blob/master/security/ADA-fuzzing-audit-22.pdf
vendor: Ada Logics
- date: '2023-07-27'
type: fuzzing
url: https://github.com/crossplane/crossplane/blob/master/security/ADA-security-audit-23.pdf
vendor: Ada Logics
- item:
name: KEDA
description: >-
KEDA is a Kubernetes-based Event Driven Autoscaling component. It provides event driven scale for any container running in Kubernetes
homepage_url: https://keda.sh/
project: graduated
repo_url: https://github.com/kedacore/keda
logo: keda.svg
twitter: https://twitter.com/kedaorg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
allow_duplicate_repo: true
extra:
accepted: '2020-03-12'
incubating: '2021-08-18'
graduated: '2023-08-22'
dev_stats_url: https://keda.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#keda-logos
blog_url: https://keda.sh/blog
slack_url: https://kubernetes.slack.com/archives/CKZJ36A5D
youtube_url: https://www.youtube.com/playlist?list=PLvjRi5R9GQfASIcL4MLTfg2ZOoBdIi5Kq
clomonitor_name: keda
audits:
- date: '2023-02-02'
type: security
url: https://github.com/trailofbits/publications/blob/master/reviews/2023-01-keda-securityreview.pdf
vendor: Trail of Bits
- item:
name: Kubernetes
description: Kubernetes is an open-source system for automating deployment, scaling, and management of containerized applications
homepage_url: https://kubernetes.io/
project: graduated
repo_url: https://github.com/kubernetes/kubernetes
logo: kubernetes.svg
twitter: https://twitter.com/kubernetesio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
allow_duplicate_repo: true
extra:
accepted: '2016-03-10'
incubating: '2016-03-10'
graduated: '2018-03-06'
cncf_tags:
- https://github.com/cncf/tag-runtime
dev_stats_url: https://k8s.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/graduated.md#kubernetes-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/kubernetes
blog_url: http://blog.kubernetes.io/
mailing_list_url: https://groups.google.com/forum/#!forum/kubernetes-dev
slack_url: http://slack.k8s.io/
youtube_url: https://www.youtube.com/channel/UCZ2bu0qutTOM0tHYa_jkIwg
clomonitor_name: kubernetes
audits:
- date: '2019-08-06'
type: security
url: https://github.com/kubernetes/sig-security/tree/main/sig-security-external-audit/security-audit-2019/findings
vendor: Trail of Bits and Atredis Partners
- date: '2023-04-19'
type: security
url: https://github.com/kubernetes/sig-security/tree/main/sig-security-external-audit/security-audit-2021-2022/findings
vendor: NCC Group
- item:
name: Kured
description: >-
Kured (KUbernetes REboot Daemon) is a Kubernetes daemonset that performs safe automatic node reboots when the need to do so is indicated by the
package management system of the underlying OS
homepage_url: https://kured.dev
project: sandbox
repo_url: https://github.com/kubereboot/kured
logo: kured.svg
twitter: https://twitter.com/kubereboot
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2022-09-14'
dev_stats_url: https://kured.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#kured-logos
slack_url: http://slack.cncf.io/
mailing_list_url: https://lists.cncf.io/g/cncf-kured-dev
youtube_url: https://www.youtube.com/playlist?list=PLbx4FZ4kOKnurkfQy-tbxYHySHSqq0LbX
clomonitor_name: kured
- subcategory:
name: Coordination & Service Discovery
items:
- item:
name: CoreDNS
description: A DNS server that chains plugins
homepage_url: https://coredns.io/
project: graduated
repo_url: https://github.com/coredns/coredns
logo: core-dns.svg
twitter: https://twitter.com/corednsio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2017-02-27'
incubating: '2018-02-26'
graduated: '2019-01-24'
cncf_tags:
- https://github.com/cncf/tag-network
dev_stats_url: https://coredns.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/graduated.md#coredns-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/coredns
blog_url: https://blog.coredns.io/
mailing_list_url: https://groups.google.com/forum/#!forum/coredns-discuss
slack_url: https://cloud-native.slack.com/messages/coredns/
youtube_url: https://www.youtube.com/channel/UCbWRJZxiaQ8twm6sh7UymoQ
clomonitor_name: core-dns
audits:
- date: '2018-02-03'
type: security
url: https://coredns.io/assets/DNS-01-report.pdf
vendor: Cure53
- item:
name: etcd
description: Distributed reliable key-value store for the most critical data of a distributed system
homepage_url: https://etcd.io/
project: graduated
repo_url: https://github.com/etcd-io/etcd
logo: etcd.svg
twitter: https://twitter.com/etcdio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2018-12-11'
incubating: '2018-12-11'
graduated: '2020-11-24'
cncf_tags:
- https://github.com/cncf/tag-storage
dev_stats_url: https://etcd.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/graduated.md#etcd-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/etcd
mailing_list_url: https://groups.google.com/forum/?hl=en#!forum/etcd-dev
slack_url: http://slack.k8s.io/
chat_channel: '#etcd'
clomonitor_name: etcd
audits:
- date: '2020-08-05'
type: security
url: https://github.com/etcd-io/etcd/blob/master/security/SECURITY_AUDIT.pdf
vendor: Trail of Bits
- date: '2022-03-11'
type: fuzzing
url: https://github.com/etcd-io/etcd/blob/main/security/FUZZING_AUDIT_2022.PDF
vendor: ADA Logics
- subcategory:
name: Remote Procedure Call
items:
- item:
name: gRPC
description: The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
homepage_url: https://grpc.io/
project: incubating
repo_url: https://github.com/grpc/grpc
logo: grpc.svg
twitter: https://twitter.com/grpcio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2017-02-16'
incubating: '2017-02-16'
dev_stats_url: https://grpc.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/incubating.md#grpc-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/grpc
blog_url: http://www.grpc.io/blog/
youtube_url: https://www.youtube.com/channel/UCrnk1HWelWnYtF78YZX80fg
gitter_url: https://gitter.im/grpc/grpc
clomonitor_name: grpc
audits:
- date: '2019-10-29'
type: security
url: https://github.com/grpc/grpc/blob/master/doc/security_audit.md
vendor: Cure53
- subcategory:
name: Service Proxy
items:
- item:
name: Envoy
description: >-
Cloud-native high-performance edge/middle/service proxy
homepage_url: https://www.envoyproxy.io
project: graduated
repo_url: https://github.com/envoyproxy/envoy
logo: envoy.svg
twitter: https://twitter.com/envoyproxy
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
allow_duplicate_repo: true
extra:
accepted: '2017-09-13'
incubating: '2017-09-13'
graduated: '2018-11-28'
cncf_tags:
- https://github.com/cncf/tag-network
dev_stats_url: https://envoy.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/graduated.md#envoy-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/envoyproxy
slack_url: https://envoyproxy.slack.com/
clomonitor_name: envoy
audits:
- date: '2018-02-27'
type: security
url: https://github.com/envoyproxy/envoy/blob/master/docs/SECURITY_AUDIT.pdf
vendor: Cure53
- date: '2021-05-15'
type: fuzzing
url: https://github.com/envoyproxy/envoy/blob/main/docs/security/audit_fuzzer_adalogics_2021.pdf
vendor: Ada Logics
- item:
name: NGINX
homepage_url: https://www.nginx.com/
repo_url: https://github.com/nginx/nginx
logo: nginx.svg
crunchbase: https://www.crunchbase.com/organization/nginx
allow_duplicate_repo: true
- subcategory:
name: API Gateway
items:
- item:
name: Azure API Management
description: >-
Azure API Management is a hybrid, multi-cloud API, full lifecycle management platform for APIs across all environments. It allows customers to
self-host API gateways as containers on Kubernetes.
homepage_url: https://azure.microsoft.com/en-us/services/api-management
repo_url: https://github.com/azure/api-management
logo: azure-api-management.svg
twitter: https://twitter.com/azureapimgmt
crunchbase: https://www.crunchbase.com/organization/microsoft
- subcategory:
name: Service Mesh
items:
- item:
name: AWS App Mesh
description: >-
AWS App Mesh is a service mesh that provides application-level networking to make it easy for your services to communicate with each other across
multiple types of compute infrastructure. App Mesh standardizes how your services communicate, giving you end-to-end visibility and ensuring
high-availability for your applications.
homepage_url: https://aws.amazon.com/app-mesh/
logo: aws-app-mesh.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- category:
name: App Definition and Development
subcategories:
- subcategory:
name: Database
items:
- item:
name: PostgreSQL
description: >-
A free and open-source relational database management system (RDBMS) emphasizing extensibility and SQL compliance
homepage_url: https://www.postgresql.org/
repo_url: https://github.com/postgres/postgres
logo: postgre-sql.svg
crunchbase: https://www.crunchbase.com/organization/postgresql
- item:
name: Redis
description: >-
Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of
values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps.
homepage_url: https://redis.io/
repo_url: https://github.com/redis/redis
logo: redis.svg
crunchbase: https://www.crunchbase.com/organization/redis-labs
- item:
name: CloudNativePG
description: >-
CloudNativePG is a comprehensive platform designed to seamlessly manage PostgreSQL databases within Kubernetes environments,
covering the entire operational lifecycle from initial deployment to ongoing maintenance
homepage_url: https://www.cloudnative-pg.io/
repo_url: https://github.com/cloudnative-pg/cloudnative-pg
logo: cloudnative-pg.svg
- item:
name: DragonflyDB
description: >-
A modern replacement for Redis and Memcached
homepage_url: https://dragonflydb.io/
repo_url: https://github.com/dragonflydb/dragonfly
logo: dragonflydb.svg
crunchbase: https://www.crunchbase.com/organization/dragonflydb
- subcategory:
name: Streaming & Messaging
items:
- item:
name: Amazon Kinesis
description: >-
Amazon Kinesis makes it easy to collect, process, and analyze real-time, streaming data so you can get timely insights and react quickly to new
information.
homepage_url: https://aws.amazon.com/kinesis/
logo: amazon-kinesis.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- item:
name: Azure Event Hubs
description: 'Event Hubs is a fully managed, real-time data ingestion service that’s simple, trusted, and scalable. '
homepage_url: https://azure.microsoft.com/en-us/services/event-hubs/
logo: azure-event-hubs.svg
twitter: https://twitter.com/azure
crunchbase: https://www.crunchbase.com/organization/microsoft
- item:
name: CDEvents
description: >-
A common specification for Continuous Delivery events
homepage_url: https://cdevents.dev
repo_url: https://github.com/cdevents/spec
logo: cdevents.svg
twitter: https://twitter.com/_cdevents
crunchbase: https://www.crunchbase.com/organization/continuous-delivery-foundation-cdf
- item:
name: CloudEvents
description: Standardizing common eventing metadata and their location to help with event identification and routing.
homepage_url: https://cloudevents.io/
project: incubating
repo_url: https://github.com/cloudevents/spec
project_org: https://github.com/cloudevents
url_for_bestpractices: https://bestpractices.coreinfrastructure.org/en/projects/6770
logo: cloud-events.svg
twitter: https://twitter.com/cloudeventsio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
joined: '2018-05-15'
extra:
accepted: '2018-05-15'
incubating: '2019-10-24'
dev_stats_url: https://cloudevents.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#cloudevents-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/cloudevents
slack_url: https://cloud-native.slack.com/messages/cloudevents
clomonitor_name: cloudevents
audits:
- date: '2022-11-28'
type: security
url: https://ostif.org/wp-content/uploads/2022/11/CloudEvents.pdf
vendor: Trail of Bits
- item:
name: NATS
description: >-
NATS.io is a connective technology for distributed systems and is a perfect fit to connect devices, edge, cloud or hybrid deployments. True
multi-tenancy makes NATS ideal for SaaS and self-healing and scaling technology allows for topology changes anytime with zero downtime.
homepage_url: https://nats.io/
project: incubating
repo_url: https://github.com/nats-io/nats-server
url_for_bestpractices: https://github.com/nats-io
additional_repos:
- repo_url: https://github.com/nats-io/nats.go
- repo_url: https://github.com/nats-io/nats.js
- repo_url: https://github.com/nats-io/nats.py
- repo_url: https://github.com/nats-io/nats.java
- repo_url: https://github.com/nats-io/nats.net
- repo_url: https://github.com/nats-io/nats.c
- repo_url: https://github.com/nats-io/nats.rs
- repo_url: https://github.com/nats-io/nats.deno
- repo_url: https://github.com/nats-io/k8s
- repo_url: https://github.com/nats-io/nats-surveyor
- repo_url: https://github.com/nats-io/natscli
- repo_url: https://github.com/nats-io/nats-architecture-and-design
- repo_url: https://github.com/nats-io/nats.docs
- repo_url: https://github.com/nats-io/nack
- repo_url: https://github.com/nats-io/nats-top
- repo_url: https://github.com/nats-io/terraform-provider-jetstream
- repo_url: https://github.com/nats-io/jetstream-gh-action
logo: nats.svg
twitter: https://twitter.com/nats_io
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2018-03-15'
incubating: '2018-03-15'
dev_stats_url: https://nats.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/incubating.md#nats-logos
stack_overflow_url: https://stackoverflow.com/questions/tagged/nats.io
mailing_list_url: https://nats.io/blog/
slack_url: >-
https://natsio.slack.com/join/shared_invite/enQtMzE2NDkxNDI2NTE1LTc5ZDEzYTkwYWZkYWQ5YjY1MzBjMWZmYzA5OGQxMzlkMGQzMjYxNGM3MWYxMjNiYmNjNzIwMTVjMWE2ZDgxZGM
clomonitor_name: nats
audits:
- date: '2019-02-06'
type: security
url: https://github.com/nats-io/nats-general/blob/master/reports/Cure53_NATS_Audit.pdf
vendor: Cure53
- subcategory:
name: Application Definition & Image Build
items:
- item:
name: Artifact Hub
description: Find, install and publish Cloud Native packages
homepage_url: https://artifacthub.io/
project: sandbox
repo_url: https://github.com/artifacthub/hub
logo: artifact-hub.svg
twitter: https://twitter.com/cncfartifacthub
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2020-06-25'
incubating: '2024-05-30'
annual_review_url: https://github.com/cncf/toc/pull/681
annual_review_date: '2021-06-23'
dev_stats_url: https://artifacthub.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/sandbox.md#artifact-hub-logos
clomonitor_name: artifact-hub
# - item:
# name: Backstage
# homepage_url: https://backstage.io/
# project: incubating
# repo_url: https://github.com/backstage/backstage
# logo: backstage.svg
# crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
# extra:
# accepted: '2020-09-08'
# incubating: '2022-03-15'
# dev_stats_url: https://backstage.devstats.cncf.io/
# artwork_url: https://github.com/cncf/artwork/tree/master/projects/backstage
# clomonitor_name: backstage
# audits:
# - date: '2022-08-23'
# type: security
# url: https://backstage.io/blog/assets/22-08-23/X41-Backstage-Audit-2022.pdf
# vendor: X41 D-Sec
# blog_url: https://backstage.io/blog
# slack_url: https://discord.gg/backstage-687207715902193673
- item:
name: Helm
description: The Kubernetes Package Manager
homepage_url: https://helm.sh/
project: graduated
repo_url: https://github.com/helm/helm
logo: helm.svg
twitter: https://twitter.com/helmpack
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
extra:
accepted: '2018-06-01'
incubating: '2018-06-01'
graduated: '2020-05-01'
cncf_tags:
- https://github.com/cncf/tag-app-delivery
dev_stats_url: https://helm.devstats.cncf.io/
artwork_url: https://github.com/cncf/artwork/blob/master/examples/incubating.md#helm-logos