forked from cncf/landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandscape.yml
10231 lines (10231 loc) · 509 KB
/
landscape.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
landscape:
- category:
name: Provisioning
subcategories:
- subcategory:
name: Automation & Configuration
items:
- item:
name: Airship
homepage_url: https://www.airshipit.org/
repo_url: https://github.com/airshipit/treasuremap
logo: airship.svg
twitter: https://twitter.com/airshipproject
crunchbase: https://www.crunchbase.com/organization/open-infrastructure-foundation
- item:
name: Ansible
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: Apollo
description: Apollo is a reliable open-source configuration management system
homepage_url: https://github.com/ctripcorp/apollo
repo_url: https://github.com/ctripcorp/apollo
logo: apollo.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/ctrip
- item:
name: AWS CloudFormation
description: AWS CloudFormation provides a common language for you to describe and provision all the infrastructure resources in your cloud environment.
homepage_url: https://aws.amazon.com/cloudformation/
logo: aws-cloudformation.svg
twitter: https://twitter.com/awscloudformer
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- item:
name: BOSH
homepage_url: https://bosh.io/docs/
repo_url: https://github.com/cloudfoundry/bosh
logo: cloudfoundry-bosh.svg
crunchbase: https://www.crunchbase.com/organization/cloud-foundry
- item:
name: Cadence Workflow
description: Cadence is a distributed, scalable, durable, and highly available fault-oblivious stateful code platform.
homepage_url: https://cadenceworkflow.io/
repo_url: https://github.com/uber/cadence
logo: cadenceworkflow.svg
twitter: https://twitter.com/UberEng
crunchbase: https://www.crunchbase.com/organization/uber
- item:
name: CFEngine
homepage_url: https://cfengine.com/
repo_url: https://github.com/cfengine/core
logo: cf-engine.svg
crunchbase: https://www.crunchbase.com/organization/cfengine
- item:
name: Chef Infra
homepage_url: https://www.chef.io/
repo_url: https://github.com/chef/chef
logo: chef_infra.svg
crunchbase: https://www.crunchbase.com/organization/chef
- item:
name: Cloud Custodian
homepage_url: https://cloudcustodian.io/
project: sandbox
repo_url: https://github.com/cloud-custodian/cloud-custodian
logo: cloud-custodian.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Cloudify
homepage_url: https://cloudify.co
repo_url: https://github.com/cloudify-cosmo/cloudify-manager
logo: cloudify.svg
crunchbase: https://www.crunchbase.com/organization/cloudify-co
- item:
name: Couler
homepage_url: https://github.com/couler-proj/couler
repo_url: https://github.com/couler-proj/couler
logo: couler.svg
twitter: https://twitter.com/CoulerProject
crunchbase: https://www.crunchbase.com/organization/ant-financial
- item:
name: Digital Rebar
homepage_url: https://rebar.digital/
repo_url: https://github.com/digitalrebar/provision
logo: digitalrebar.svg
twitter: https://twitter.com/digitalrebar
crunchbase: https://www.crunchbase.com/organization/rackn-inc
- item:
name: Foreman
homepage_url: https://theforeman.org/
repo_url: https://github.com/theforeman/foreman
logo: foreman.svg
twitter: https://twitter.com/foremanproject
crunchbase: https://www.crunchbase.com/organization/foreman
- item:
name: Juju
homepage_url: https://jaas.ai/
repo_url: https://github.com/juju/juju
logo: juju.svg
twitter: https://twitter.com/ubuntu
crunchbase: https://www.crunchbase.com/organization/canonical-ltd
- item:
name: kiosk
homepage_url: https://github.com/loft-sh/kiosk
repo_url: https://github.com/loft-sh/kiosk
logo: kiosk.svg
crunchbase: https://www.crunchbase.com/organization/devspace-technologies
- item:
name: KubeEdge
homepage_url: https://kubeedge.io/en/
project: incubating
repo_url: https://github.com/kubeedge/kubeedge
logo: kube-edge.svg
twitter: https://twitter.com/KubeEdge
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: LinuxKit
homepage_url: https://github.com/linuxkit/linuxkit
repo_url: https://github.com/linuxkit/linuxkit
logo: linux-kit.svg
twitter: https://twitter.com/moby
crunchbase: https://www.crunchbase.com/organization/docker
- item:
name: MAAS
description: Self-service, remote installation of Windows, CentOS, ESXi and Ubuntu on real servers turns your data center into a bare-metal cloud.
homepage_url: https://maas.io/
repo_url: https://github.com/maas/maas
logo: maas.svg
crunchbase: https://www.crunchbase.com/organization/canonical-ltd
- item:
name: ManageIQ
homepage_url: https://www.manageiq.org/
repo_url: https://github.com/ManageIQ/manageiq
logo: manage-iq.svg
crunchbase: https://www.crunchbase.com/organization/manageiq
- item:
name: Metal3-io
homepage_url: https://metal3.io/
project: sandbox
logo: metal3.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
joined: '2021-02-01'
name: Mist.io
homepage_url: https://mist.io/
repo_url: https://github.com/mistio/mist-ce
logo: mistio.svg
crunchbase: https://www.crunchbase.com/organization/mist-io
- item:
name: OpenStack
homepage_url: https://www.openstack.org/
repo_url: https://github.com/openstack/openstack
url_for_bestpractices: https://github.com/openstack
logo: open-stack.svg
crunchbase: https://www.crunchbase.com/organization/open-infrastructure-foundation
- item:
name: OpenYurt
description: An open platform that extending your native Kubernetes to edge.
homepage_url: https://openyurt.io/en-us
project: sandbox
repo_url: https://github.com/openyurtio/openyurt
logo: openyurt.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Pulumi
homepage_url: https://www.pulumi.com/
repo_url: https://github.com/pulumi/pulumi
logo: pulumi.svg
twitter: https://twitter.com/PulumiCorp
crunchbase: https://www.crunchbase.com/organization/pulumi-corporation
- item:
name: Puppet
homepage_url: https://puppet.com/
repo_url: https://github.com/puppetlabs/puppet
logo: puppet.svg
crunchbase: https://www.crunchbase.com/organization/puppet-labs
- item:
name: Rundeck
homepage_url: https://www.rundeck.com/open-source
repo_url: https://github.com/rundeck/rundeck
logo: rundeck.svg
crunchbase: https://www.crunchbase.com/organization/rundeck
- item:
name: SaltStack
homepage_url: https://www.vmware.com/support/acquisitions/saltstack.html
repo_url: https://github.com/saltstack/salt
logo: salt-stack.svg
twitter: https://twitter.com/Salt_Project_OS
crunchbase: https://www.crunchbase.com/organization/saltstack
- item:
name: StackStorm
homepage_url: https://stackstorm.com/
repo_url: https://github.com/stackstorm/st2
logo: stackstorm.svg
crunchbase: https://www.crunchbase.com/organization/stackstorm
- item:
name: Terraform
homepage_url: https://www.terraform.io/
repo_url: https://github.com/hashicorp/terraform
logo: terraform.svg
crunchbase: https://www.crunchbase.com/organization/hashicorp
- item:
name: Tinkerbell
homepage_url: https://tinkerbell.org/
project: sandbox
repo_url: https://github.com/tinkerbell/tink
logo: tinkerbell.svg
twitter: https://twitter.com/tinkerbell_oss
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: VMware vSphere
description: >-
vSphere is the industry-leading server virtualization software and the heart of a modern SDDC, helping you run, manage, connect, and secure your
applications in a common operating environment across clouds.
homepage_url: https://www.vmware.com/products/vsphere.html
logo: vmware-vsphere.svg
twitter: https://twitter.com/VMwarevSphere
crunchbase: https://www.crunchbase.com/organization/vmware
- 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: Docker Registry
homepage_url: https://docs.docker.com/registry/
repo_url: https://github.com/distribution/distribution
logo: docker-registry.svg
twitter: https://twitter.com/moby
crunchbase: https://www.crunchbase.com/organization/docker
- item:
name: Dragonfly
homepage_url: https://d7y.io/en-us/
project: incubating
repo_url: https://github.com/dragonflyoss/Dragonfly
logo: dragonfly.svg
twitter: https://twitter.com/dragonfly_oss
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- 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: Harbor
homepage_url: https://goharbor.io/
project: graduated
repo_url: https://github.com/goharbor/harbor
logo: harbor.svg
twitter: https://twitter.com/project_harbor
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- 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
- item:
name: JFrog Artifactory
description: >-
Shipping updates continuously and automatically has become a critical element of any successful operation. JFrog is revolutionizing the software
world with the practice of Continuous Update, with a speed and continuity that forever changes the way organizations manage and release software.
homepage_url: https://jfrog.com/artifactory/
logo: j-frog-artifactory.svg
crunchbase: https://www.crunchbase.com/organization/jfrog-ltd
- item:
name: Kraken
homepage_url: https://eng.uber.com/introducing-kraken/
repo_url: https://github.com/uber/kraken
logo: kraken.svg
twitter: https://twitter.com/UberEng
crunchbase: https://www.crunchbase.com/organization/uber
- item:
name: Portus
homepage_url: http://port.us.org/
repo_url: https://github.com/SUSE/Portus
logo: portus.svg
crunchbase: https://www.crunchbase.com/organization/suse
- item:
name: Quay
homepage_url: https://quay.io/
repo_url: https://github.com/quay/quay
logo: quay.svg
twitter: https://twitter.com/projectquay
crunchbase: https://www.crunchbase.com/organization/red-hat
- subcategory:
name: Security & Compliance
items:
- item:
name: Alcide
description: Alcide provides dev-to-production security for workloads running in Kubernetes & Istio
homepage_url: https://www.alcide.io/
logo: alcide.svg
crunchbase: https://www.crunchbase.com/organization/alcide
- item:
name: Anchore
homepage_url: https://anchore.com/enterprise/
repo_url: https://github.com/anchore/anchore-engine
logo: anchore.svg
crunchbase: https://www.crunchbase.com/organization/anchore-inc
- item:
joined: '2021-02-02'
name: Apolicy
description: >-
Apolicy fuses security and compliance into your cloud native development pipeline. Using policy-as-code, we automate risk, policy and remediation
from source to production
homepage_url: https://www.apolicy.io/
logo: apolicy.svg
crunchbase: https://www.crunchbase.com/organization/apolicy
- item:
name: Aqua
homepage_url: https://www.aquasec.com/
logo: aqua.svg
crunchbase: https://www.crunchbase.com/organization/aquasecurity
- item:
name: Armo
homepage_url: https://www.armosec.io
logo: armo.svg
crunchbase: https://www.crunchbase.com/organization/cyber-armor
- item:
name: Black Duck
description: >-
Black Duck provides a comprehensive software composition analysis (SCA) solution for managing security, quality, and license compliance risk that
comes from the use of open source and third-party code in applications and containers.
homepage_url: https://www.synopsys.com/software-integrity/security-testing/software-composition-analysis.html
logo: blackduck.svg
twitter: https://twitter.com/sw_integrity
crunchbase: https://www.crunchbase.com/organization/synopsys
- item:
name: Bloombase
homepage_url: https://www.bloombase.com/
logo: https://landscape.cncf.io/logos/bloombase.svg
crunchbase: https://www.crunchbase.com/organization/bloombase
- item:
name: Capsule8
homepage_url: https://capsule8.com/
logo: https://www.cncf.io/wp-content/uploads/2018/01/capsule8.svg
crunchbase: https://www.crunchbase.com/organization/capsule8
- item:
name: cert-manager
homepage_url: https://www.jetstack.io/open-source/
project: sandbox
repo_url: https://github.com/jetstack/cert-manager
logo: jetstack-cert-manager.svg
twitter: https://twitter.com/JetstackHQ
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Check Point
description: >-
Check Point Software Technologies Ltd. is a leading provider of cyber security solutions to corporate enterprises and governments globally. Check
Point protects over 100,000 organizations of all sizes.
homepage_url: https://www.checkpoint.com/products
logo: checkpoint.svg
twitter: https://twitter.com/CheckPointSW
crunchbase: https://www.crunchbase.com/organization/check-point
- item:
name: Chef InSpec
homepage_url: https://community.chef.io/products/chef-inspec
repo_url: https://github.com/inspec/inspec
logo: chef_inspec.svg
crunchbase: https://www.crunchbase.com/organization/chef
- item:
name: Clair
homepage_url: https://www.redhat.com/en/topics/containers/what-is-clair
repo_url: https://github.com/quay/clair
logo: clair.svg
twitter: https://twitter.com/coreos
crunchbase: https://www.crunchbase.com/organization/red-hat
- item:
name: Curiefense
homepage_url: https://www.curiefense.io/
project: sandbox
repo_url: https://github.com/curiefense/curiefense
logo: curiefense.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Datica
homepage_url: https://datica.com/
logo: datica.svg
crunchbase: https://www.crunchbase.com/organization/datica
- item:
name: Dex
homepage_url: https://github.com/dexidp/dex
project: sandbox
repo_url: https://github.com/dexidp/dex
logo: dex.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Dosec
description: Dosec Security Platform provides security protection capabilities for containers, kubernetes, microservices, serverless, and DevOps.
homepage_url: https://www.dosec.cn/
logo: dosec.svg
crunchbase: https://www.crunchbase.com/organization/dosec
- item:
name: Fairwinds Insights
homepage_url: https://fairwinds.com/insights
logo: fairwinds-insights.svg
crunchbase: https://www.crunchbase.com/organization/fairwinds
- item:
name: Falco
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
- item:
name: FOSSA
homepage_url: https://fossa.com/
repo_url: https://github.com/fossas/fossa-cli
logo: fossa.svg
crunchbase: https://www.crunchbase.com/organization/fossa-2
- item:
name: FOSSID
homepage_url: https://www.fossid.com/
logo: fossid.svg
crunchbase: https://www.crunchbase.com/organization/fossid
- item:
name: Goldilocks
homepage_url: https://www.fairwinds.com/open-source-software
repo_url: https://github.com/FairwindsOps/goldilocks
logo: goldilocks.svg
crunchbase: https://www.crunchbase.com/organization/fairwinds
- item:
name: Grafeas
homepage_url: https://grafeas.io/
repo_url: https://github.com/grafeas/grafeas
logo: grafeas.svg
twitter: https://twitter.com/Grafeasio
crunchbase: https://www.crunchbase.com/organization/google
- item:
name: in-toto
homepage_url: https://in-toto.io
project: sandbox
repo_url: https://github.com/in-toto/in-toto
logo: https://raw.githubusercontent.com/cncf/artwork/master/projects/in-toto/stacked/color/in-toto-stacked-color.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Keylime
homepage_url: https://keylime.dev/
project: sandbox
logo: keylime.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: kube-bench
homepage_url: https://github.com/aquasecurity/kube-bench
repo_url: https://github.com/aquasecurity/kube-bench
logo: kube-bench.svg
crunchbase: https://www.crunchbase.com/organization/aquasecurity
- item:
name: kube-hunter
homepage_url: https://github.com/aquasecurity/kube-hunter
repo_url: https://github.com/aquasecurity/kube-hunter
logo: kube-hunter.svg
crunchbase: https://www.crunchbase.com/organization/aquasecurity
- item:
name: Kyverno
homepage_url: https://kyverno.io/
project: sandbox
repo_url: https://github.com/kyverno/kyverno
logo: kyverno.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: NeuVector
homepage_url: https://neuvector.com/
logo: neuvector.svg
crunchbase: https://www.crunchbase.com/organization/neuvector
- item:
name: Notary
homepage_url: https://github.com/theupdateframework/notary
project: incubating
repo_url: https://github.com/theupdateframework/notary
logo: notary.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- 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
- item:
name: OpenSCAP
homepage_url: https://www.open-scap.org/
repo_url: https://github.com/OpenSCAP/openscap
logo: openscap.svg
twitter: https://twitter.com/OpenSCAP
crunchbase: https://www.crunchbase.com/organization/red-hat
- item:
name: Orca Security
homepage_url: https://orca.security
logo: orcasec.svg
crunchbase: https://www.crunchbase.com/organization/orca-security
- item:
name: Parsec
homepage_url: https://github.com/parallaxsecond/parsec
project: sandbox
repo_url: https://github.com/parallaxsecond/parsec
logo: parsec.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Pluto
homepage_url: https://www.fairwinds.com/open-source-software
repo_url: https://github.com/FairwindsOps/pluto
logo: pluto.svg
crunchbase: https://www.crunchbase.com/organization/fairwinds
- item:
name: Polaris
homepage_url: https://fairwinds.com/polaris
repo_url: https://github.com/FairwindsOps/polaris
logo: polaris.svg
crunchbase: https://www.crunchbase.com/organization/fairwinds
- item:
name: Portshift
homepage_url: https://www.portshift.io/
logo: portshift.svg
crunchbase: https://www.crunchbase.com/organization/portshift
- item:
name: Prisma Cloud Security Suite
homepage_url: https://www.paloaltonetworks.com/prisma/cloud
logo: palo-alto-networks.svg
crunchbase: https://www.crunchbase.com/organization/palo-alto-networks
- item:
name: RBAC Lookup
homepage_url: https://www.fairwinds.com/open-source-software
repo_url: https://github.com/FairwindsOps/rbac-lookup
logo: rbac-lookup.svg
crunchbase: https://www.crunchbase.com/organization/fairwinds
- item:
name: RBAC Manager
homepage_url: https://www.fairwinds.com/open-source-software
repo_url: https://github.com/FairwindsOps/rbac-manager
logo: rbac-manager.svg
crunchbase: https://www.crunchbase.com/organization/fairwinds
- item:
name: Snyk
homepage_url: https://snyk.io/
logo: snyk.svg
crunchbase: https://www.crunchbase.com/organization/snyk
- item:
name: Sonatype Nexus
homepage_url: https://www.sonatype.com/
logo: sonatype.svg
twitter: https://twitter.com/sonatype
crunchbase: https://www.crunchbase.com/organization/sonatype
- item:
name: Sonobuoy
homepage_url: https://sonobuoy.io
repo_url: https://github.com/vmware-tanzu/sonobuoy
logo: project-sonobuoy.svg
twitter: https://twitter.com/projectsonobuoy
crunchbase: https://www.crunchbase.com/organization/vmware
- item:
name: StackHawk
description: StackHawk helps developers find and fix application security vulnerabilities before they hit production with CI/CD automation.
homepage_url: https://stackhawk.com
logo: stackhawk.svg
crunchbase: https://www.crunchbase.com/organization/stackhawk
- item:
name: StackRox
homepage_url: https://www.stackrox.com/
logo: stackrox.svg
twitter: https://twitter.com/StackRox
crunchbase: https://www.crunchbase.com/organization/stackrox
- item:
name: Sysdig Secure
description: "Sysdig Secure embeds security and compliance into the build, run and respond stages of the Kubernetes lifecycle.\_"
homepage_url: https://sysdig.com/use-cases/kubernetes-security
logo: sysdig-secure.svg
crunchbase: https://www.crunchbase.com/organization/sysdig
- item:
name: Terrascan
homepage_url: https://www.accurics.com/products/terrascan/
repo_url: https://github.com/accurics/terrascan
logo: terrascan.svg
crunchbase: https://www.crunchbase.com/organization/accurics
- item:
name: The Update Framework (TUF)
homepage_url: https://theupdateframework.github.io/
project: graduated
repo_url: https://github.com/theupdateframework/tuf
logo: the-update-framework-tuf.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Tigera
homepage_url: https://www.tigera.io/
logo: tigera.svg
crunchbase: https://www.crunchbase.com/organization/tigera
- item:
name: Trend Micro Cloud One
homepage_url: https://www.trendmicro.com/en_us/business/campaigns/cloud-one-services.html
logo: trend-micro.svg
crunchbase: https://www.crunchbase.com/organization/trend-micro
- item:
name: Trivy
homepage_url: https://github.com/aquasecurity/trivy
repo_url: https://github.com/aquasecurity/trivy
logo: trivy.svg
crunchbase: https://www.crunchbase.com/organization/aquasecurity
- item:
name: WhiteSource
homepage_url: https://www.whitesourcesoftware.com/
logo: https://landscape.cd.foundation/logos/white-source.svg
crunchbase: https://www.crunchbase.com/organization/white-source
- item:
name: Zettaset
homepage_url: https://www.zettaset.com/
logo: zettaset.svg
crunchbase: https://www.crunchbase.com/organization/goto-metrics
- subcategory:
name: Key Management
items:
- item:
name: Athenz
description: Open source platform for X.509 certificate based service authentication and fine grained access control in dynamic infrastructures
homepage_url: https://www.athenz.io
project: sandbox
repo_url: https://github.com/AthenZ/athenz
logo: athenz.svg
twitter: https://twitter.com/athenzio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: CyberArk Conjur
homepage_url: https://www.conjur.org
repo_url: https://github.com/cyberark/conjur
logo: conjur.svg
twitter: https://twitter.com/ConjurInc
crunchbase: https://www.crunchbase.com/organization/cyber-ark-software
- item:
name: Keycloak
homepage_url: https://www.keycloak.org
repo_url: https://github.com/keycloak/keycloak
logo: keycloak.svg
twitter: https://twitter.com/keycloak
crunchbase: https://www.crunchbase.com/organization/red-hat
- 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: ORY Hydra
homepage_url: https://www.ory.sh/
repo_url: https://github.com/ory/hydra
logo: ory-hydra.svg
crunchbase: https://www.crunchbase.com/organization/ory
- item:
name: Pomerium
homepage_url: https://www.pomerium.io/
repo_url: https://github.com/pomerium/pomerium
logo: pomerium.svg
crunchbase: https://www.crunchbase.com/organization/pomerium
- item:
name: SPIFFE
homepage_url: https://spiffe.io/
project: incubating
repo_url: https://github.com/spiffe/spiffe
logo: spiffe.svg
twitter: https://twitter.com/spiffeio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: SPIRE
homepage_url: https://spiffe.io/spire/
project: incubating
repo_url: https://github.com/spiffe/spire
logo: spire.svg
twitter: https://twitter.com/spiffeio
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Square Keywhiz
homepage_url: https://square.github.io/keywhiz/
repo_url: https://github.com/square/keywhiz
logo: square-keywhiz.svg
twitter: https://twitter.com/SquareEng
crunchbase: https://www.crunchbase.com/organization/square
- item:
name: sso
homepage_url: https://github.com/buzzfeed/sso
repo_url: https://github.com/buzzfeed/sso
logo: sso.svg
twitter: https://twitter.com/buzzfeedexp
crunchbase: https://www.crunchbase.com/organization/buzzfeed
- 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
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: Alluxio
homepage_url: https://www.alluxio.io/
repo_url: https://github.com/alluxio/alluxio
logo: alluxio.svg
twitter: https://twitter.com/alluxio
crunchbase: https://www.crunchbase.com/organization/alluxio
- 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: Arrikto
homepage_url: https://www.arrikto.com/
logo: arrikto.svg
twitter: https://twitter.com/arrikto
crunchbase: https://www.crunchbase.com/organization/arrikto
- 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: Ceph
homepage_url: https://ceph.io/
repo_url: https://github.com/ceph/ceph
logo: ceph.svg
twitter: https://twitter.com/Ceph
crunchbase: https://www.crunchbase.com/organization/ceph-foundation
- item:
name: ChubaoFS
homepage_url: https://chubao.io/
project: sandbox
repo_url: https://github.com/chubaofs/chubaofs
logo: chubaofs.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- 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: Datera
homepage_url: https://datera.io/
logo: datera.svg
crunchbase: https://www.crunchbase.com/organization/datera-2
- item:
name: Dell EMC
description: Data storage that takes you from insights to innovation.
homepage_url: https://www.delltechnologies.com/en-us/storage/data-storage.htm
logo: dell-emc.svg
twitter: https://twitter.com/DellEMCStorage
crunchbase: https://www.crunchbase.com/organization/dell-emc
- item:
name: Diamanti
homepage_url: https://diamanti.com/
logo: diamanti.svg
crunchbase: https://www.crunchbase.com/organization/diamanti
- item:
name: DriveScale
homepage_url: https://drivescale.com/
logo: drivescale.svg
twitter: https://twitter.com/DriveScale_inc
crunchbase: https://www.crunchbase.com/organization/drivescale
- item:
name: Gluster
homepage_url: https://www.gluster.org/
repo_url: https://github.com/gluster/glusterfs
logo: gluster.svg
twitter: https://twitter.com/gluster
crunchbase: https://www.crunchbase.com/organization/red-hat
- 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: Hedvig
homepage_url: https://www.commvault.com/software-defined-storage
logo: hedvig.svg
crunchbase: https://www.crunchbase.com/organization/hedvig
- item:
name: Hitachi
homepage_url: https://www.hitachi.com
logo: hitachi.svg
twitter: https://twitter.com/hitachivantara
crunchbase: https://www.crunchbase.com/organization/hitachi
- item:
name: HPE Storage
description: The world’s most intelligent storage, built for our hybrid cloud world to help you unlock the full potential of your data.
homepage_url: https://www.hpe.com/us/en/storage.html
logo: hpe-storage.svg
twitter: https://twitter.com/HPE_Storage
crunchbase: https://www.crunchbase.com/organization/hewlett-packard-enterprise
- item:
name: Huawei
description: Ubiquitous Storage Unleashes Data Power
homepage_url: https://e.huawei.com/us/products/storage
logo: huawei.svg
crunchbase: https://www.crunchbase.com/organization/huawei
- 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/it-infrastructure/storage/containers/redhat-openshift
logo: https://landscape.openmainframeproject.org/logos/ibm.svg
twitter: https://twitter.com/IBMStorage
crunchbase: https://www.crunchbase.com/organization/ibm
- item:
name: INFINIDAT
homepage_url: https://www.infinidat.com/en
logo: infinidat.svg
crunchbase: https://www.crunchbase.com/organization/infinidat
- item:
name: Ionir
description: Ionir Liberates Your Applications from Clouds
homepage_url: https://ionir.com
logo: ionir.svg
crunchbase: https://www.crunchbase.com/organization/ionir
- item:
name: Kasten
homepage_url: https://kasten.io/
logo: kasten.svg
crunchbase: https://www.crunchbase.com/organization/kasten
- item:
name: LINSTOR
description: >-
High Performance Software-Defined Block Storage for container, cloud and virtualisation. Fully integrated with Docker, Kubernetes, Openstack,
Proxmox etc.
homepage_url: https://www.linbit.com/linstor/
repo_url: https://github.com/LINBIT/linstor-server
logo: linstor.svg
twitter: https://twitter.com/linbit
crunchbase: https://www.crunchbase.com/organization/linbit
- item:
name: Longhorn
homepage_url: https://github.com/longhorn/longhorn
project: sandbox
repo_url: https://github.com/longhorn/longhorn
logo: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/stacked/color/longhorn-stacked-color.svg
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: MayaData
homepage_url: https://mayadata.io/
logo: mayadata-stacked.svg
twitter: https://twitter.com/mayadata
crunchbase: https://www.crunchbase.com/organization/mayadata
- item:
name: MinIO
homepage_url: https://min.io/
repo_url: https://github.com/minio/minio
logo: https://min.io/resources/img/logo.svg
crunchbase: https://www.crunchbase.com/organization/minio-inc
- item:
name: MooseFS
homepage_url: https://moosefs.com/
repo_url: https://github.com/moosefs/moosefs
logo: moosefs.svg
twitter: https://twitter.com/moosefs
crunchbase: https://www.crunchbase.com/organization/tuxera
- item:
name: NetApp
description: Build your Data Fabric on the industry’s broadest portfolio of all-flash, hybrid-flash, and object storage systems.
homepage_url: https://www.netapp.com/data-storage
logo: netapp.svg
crunchbase: https://www.crunchbase.com/organization/netapp
- item:
name: Nutanix Objects
homepage_url: https://www.nutanix.com/products/objects
logo: nutanix.svg
crunchbase: https://www.crunchbase.com/organization/nutanix
- item:
name: OpenEBS
homepage_url: https://www.openebs.io/
project: sandbox
repo_url: https://github.com/openebs/openebs
logo: openebs.svg
twitter: https://twitter.com/openebs
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: OpenIO
homepage_url: https://www.openio.io/
repo_url: https://github.com/open-io/oio-sds
logo: openio.svg
crunchbase: https://www.crunchbase.com/organization/openio
- item:
name: Portworx
homepage_url: https://portworx.com/
logo: portworx.svg
crunchbase: https://www.crunchbase.com/organization/portworx
- item:
name: Pure Storage
homepage_url: https://www.purestorage.com/
logo: pure-storage.svg
crunchbase: https://www.crunchbase.com/organization/pure-storage
- item:
joined: '2021-02-05'
name: QingStor
homepage_url: https://www.qingcloud.com/products/qingstor/
logo: QingStor.svg
crunchbase: https://www.crunchbase.com/organization/qingcloud
- item:
name: Qumulo
description: >-
Qumulo provides file storage that delivers billion file count, petabyte scale, gigabyte throughput in the public cloud and AWS GovCloud(US) with
all-flash and hybrid SSD/HDD options.
homepage_url: https://www.qumulo.com/
logo: qumulo.svg
twitter: https://twitter.com/Qumulo
crunchbase: https://www.crunchbase.com/organization/qumulo
- item:
name: Quobyte
homepage_url: https://www.quobyte.com/
logo: quobyte.svg
twitter: https://twitter.com/Quobyte
crunchbase: https://www.crunchbase.com/organization/quobyte
- item:
name: Robin Systems
homepage_url: https://robin.io/
logo: robin-systems.svg
crunchbase: https://www.crunchbase.com/organization/robin-systems
- item:
name: Rook
homepage_url: https://rook.io/
project: graduated
repo_url: https://github.com/rook/rook
logo: rook.svg
twitter: https://twitter.com/rook_io
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: SandStone
description: ShenZhen SandStone Data Technology Co., Ltd. is a high-tech enterprise focusing on enterprise-level software-defined storage.
homepage_url: https://www.szsandstone.com
logo: sandstone.svg
crunchbase: https://www.crunchbase.com/organization/shansyan-data
- item:
name: Scality RING