forked from cncf/landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
landscape.yml
7850 lines (7850 loc) · 399 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/openstack'
- item:
name: Ansible
homepage_url: 'https://www.ansible.com/'
repo_url: 'https://github.com/ansible/ansible'
stock_ticker: IBM
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
twitter: 'https://twitter.com/cloudfoundry'
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
twitter: 'https://twitter.com/cfengine'
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
twitter: 'https://twitter.com/chef'
crunchbase: 'https://www.crunchbase.com/organization/chef'
- 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: 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: KubeEdge
homepage_url: 'https://kubeedge.io/en/'
project: sandbox
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: Kubicorn
homepage_url: 'http://kubicorn.io/'
repo_url: 'https://github.com/kubicorn/kubicorn'
logo: kubicorn.svg
twitter: 'https://twitter.com/kubicornk8s'
crunchbase: 'https://www.crunchbase.com/organization/kubicorn'
- 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
twitter: 'https://twitter.com/Canonical'
crunchbase: 'https://www.crunchbase.com/organization/canonical-ltd'
- item:
name: ManageIQ
homepage_url: 'https://manageiq.org/'
repo_url: 'https://github.com/ManageIQ/manageiq'
logo: manage-iq.svg
twitter: 'https://twitter.com/manageiq'
crunchbase: 'https://www.crunchbase.com/organization/manageiq'
- item:
name: OpenStack
homepage_url: 'https://www.openstack.org/'
repo_url: 'https://github.com/openstack/openstack'
logo: open-stack.svg
twitter: 'https://twitter.com/OpenStack'
crunchbase: 'https://www.crunchbase.com/organization/openstack'
- 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
twitter: 'https://twitter.com/puppetize'
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
twitter: 'https://twitter.com/rundeck'
crunchbase: 'https://www.crunchbase.com/organization/rundeck'
- item:
name: SaltStack
homepage_url: 'https://www.saltstack.com/'
repo_url: 'https://github.com/saltstack/salt'
logo: salt-stack.svg
twitter: 'https://twitter.com/SaltStack'
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
twitter: 'https://twitter.com/Stack_Storm'
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
twitter: 'https://twitter.com/HashiCorp'
crunchbase: 'https://www.crunchbase.com/organization/hashicorp'
- 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: 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
twitter: 'https://twitter.com/awscloud'
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: Codefresh Registry
description: When creating a Codefresh account you will automatically get access to your Codefresh Registry which stores and lets you distribute docker images.
homepage_url: 'https://codefresh.io/docs/docs/docker-registries/codefresh-registry/'
logo: codefresh-registry.svg
crunchbase: 'https://www.crunchbase.com/organization/code-fresh'
- item:
name: Docker Registry
homepage_url: 'https://docs.docker.com/registry/'
repo_url: 'https://github.com/docker/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: sandbox
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: incubating
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
twitter: 'https://twitter.com/jfrog'
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
twitter: 'https://twitter.com/SUSE'
crunchbase: 'https://www.crunchbase.com/organization/suse'
- item:
name: Quay
description: 'Ensure your apps are stored privately, with access that you control. Quay is teamwork optimized, with powerful access controls.'
homepage_url: 'https://quay.io/'
stock_ticker: IBM
logo: quay.svg
twitter: 'https://twitter.com/coreos'
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
twitter: 'https://twitter.com/alcideio'
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
twitter: 'https://twitter.com/anchore'
crunchbase: 'https://www.crunchbase.com/organization/anchore-inc'
- item:
name: Aqua
homepage_url: 'https://www.aquasec.com/'
logo: aqua.svg
twitter: 'https://twitter.com/AquaSecTeam'
crunchbase: 'https://www.crunchbase.com/organization/aquasecurity'
- 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: bloombase.svg
twitter: 'https://twitter.com/bloombase'
crunchbase: 'https://www.crunchbase.com/organization/bloombase'
- item:
name: cert-manager
homepage_url: 'https://www.jetstack.io/open-source/'
repo_url: 'https://github.com/jetstack/cert-manager'
logo: jetstack-cert-manager.svg
twitter: 'https://twitter.com/JetstackHQ'
crunchbase: 'https://www.crunchbase.com/organization/jetstack'
- item:
name: Chef InSpec
homepage_url: 'https://www.inspec.io/'
repo_url: 'https://github.com/inspec/inspec'
logo: chef_inspec.svg
twitter: 'https://twitter.com/chef'
crunchbase: 'https://www.crunchbase.com/organization/chef'
- item:
name: Clair
homepage_url: 'https://coreos.com/clair/docs/latest/'
repo_url: 'https://github.com/coreos/clair'
stock_ticker: IBM
logo: clair.svg
twitter: 'https://twitter.com/coreos'
crunchbase: 'https://www.crunchbase.com/organization/red-hat'
- item:
name: Datica
homepage_url: 'https://datica.com/'
logo: datica.svg
twitter: 'https://twitter.com/daticahealth'
crunchbase: 'https://www.crunchbase.com/organization/datica'
- item:
name: Falco
homepage_url: 'https://falco.org/'
project: sandbox
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
twitter: 'https://twitter.com/getfossa'
crunchbase: 'https://www.crunchbase.com/organization/fossa-2'
- 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: kube-bench
homepage_url: 'https://github.com/aquasecurity/kube-bench'
repo_url: 'https://github.com/aquasecurity/kube-bench'
logo: kube-bench.svg
twitter: 'https://twitter.com/AquaSecTeam'
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
twitter: 'https://twitter.com/AquaSecTeam'
crunchbase: 'https://www.crunchbase.com/organization/aquasecurity'
- item:
name: NeuVector
homepage_url: 'https://neuvector.com/'
logo: neuvector.svg
twitter: 'https://twitter.com/neuvector'
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: incubating
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'
stock_ticker: IBM
logo: openscap.svg
twitter: 'https://twitter.com/OpenSCAP'
crunchbase: 'https://www.crunchbase.com/organization/red-hat'
- item:
name: Snyk
homepage_url: 'https://snyk.io/'
logo: snyk.svg
twitter: 'https://twitter.com/snyksec'
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/heptio/sonobuoy'
logo: project-sonobuoy.svg
twitter: 'https://twitter.com/projectsonobuoy'
crunchbase: 'https://www.crunchbase.com/organization/vmware'
- 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: The Update Framework (TUF)
homepage_url: 'https://theupdateframework.github.io/'
project: incubating
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
twitter: 'https://twitter.com/tigeraio'
crunchbase: 'https://www.crunchbase.com/organization/tigera'
- item:
name: Twistlock
homepage_url: 'https://www.twistlock.com/'
logo: twistlock.svg
twitter: 'https://twitter.com/twistlockteam'
crunchbase: 'https://www.crunchbase.com/organization/twistlock'
- item:
name: WhiteSource
homepage_url: 'https://www.whitesourcesoftware.com/'
logo: whitesource.svg
twitter: 'https://twitter.com/WhiteSourceSoft'
crunchbase: 'https://www.crunchbase.com/organization/white-source'
- subcategory:
name: Key Management
items:
- item:
name: Athenz
homepage_url: 'https://github.com/yahoo/athenz'
repo_url: 'https://github.com/yahoo/athenz'
logo: athenz.svg
twitter: 'https://twitter.com/ydn'
crunchbase: 'https://www.crunchbase.com/organization/verizon-media'
- 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'
stock_ticker: IBM
logo: keycloak.svg
twitter: 'https://twitter.com/keycloak'
crunchbase: 'https://www.crunchbase.com/organization/red-hat'
- 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: sandbox
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: sandbox
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://gravitational.com/teleport'
repo_url: 'https://github.com/gravitational/teleport'
logo: teleport.svg
twitter: 'https://twitter.com/gravitationalco'
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
twitter: 'https://twitter.com/HashiCorp'
crunchbase: 'https://www.crunchbase.com/organization/hashicorp'
- category:
name: Runtime
subcategories:
- subcategory:
name: Cloud Native Storage
items:
- 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
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/'
repo_url: 'https://github.com/chubaofs/chubaofs'
logo: chubaofs.svg
crunchbase: 'https://www.crunchbase.com/organization/jd-com'
- 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
crunchbase: 'https://www.crunchbase.com/organization/google'
- item:
name: Datera
homepage_url: 'https://datera.io/'
logo: datera.svg
twitter: 'https://twitter.com/DateraInc'
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.dellemc.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
twitter: 'https://twitter.com/diamanticom'
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: Elastifile
homepage_url: 'https://www.elastifile.com'
logo: elastifile.svg
twitter: 'https://twitter.com/elastifile'
crunchbase: 'https://www.crunchbase.com/organization/elastifile'
- item:
name: Gluster
homepage_url: 'https://www.gluster.org/'
repo_url: 'https://github.com/gluster/glusterfs'
stock_ticker: IBM
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://azure.microsoft.com/en-us/services/storage/disks/'
logo: google-persistent-disk.svg
crunchbase: 'https://www.crunchbase.com/organization/google'
- item:
name: Hatchway
description: >-
Project Hatchway address this gap in vSphere environments by offering storage infrastructure choices for container environments, from
hyper-converged infrastructure (HCI) powered by VMware vSAN™ to traditional SAN and NAS storage.
homepage_url: 'https://vmware.github.io/hatchway/'
logo: hatchway.svg
twitter: 'https://twitter.com/VMware'
crunchbase: 'https://www.crunchbase.com/organization/vmware'
- item:
name: Hedvig
homepage_url: 'https://www.hedvig.io'
logo: hedvig.svg
twitter: 'https://twitter.com/HedvigInc'
crunchbase: 'https://www.crunchbase.com/organization/hedvig'
- 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: INFINIDAT
homepage_url: 'https://www.infinidat.com/'
logo: infinidat.svg
twitter: 'https://twitter.com/INFINIDAT'
crunchbase: 'https://www.crunchbase.com/organization/infinidat'
- item:
name: Kasten
homepage_url: 'https://kasten.io/'
logo: kasten.svg
twitter: 'https://twitter.com/kastenhq'
crunchbase: 'https://www.crunchbase.com/organization/kasten'
- item:
name: LeoFS
homepage_url: 'https://leo-project.net/leofs/'
repo_url: 'https://github.com/leo-project/leofs'
logo: leofs.svg
twitter: 'https://twitter.com/LeoFastStorage'
crunchbase: 'https://www.crunchbase.com/organization/leo-project'
- item:
name: Longhorn
homepage_url: 'https://github.com/longhorn/longhorn'
repo_url: 'https://github.com/longhorn/longhorn'
logo: longhorn.svg
twitter: 'https://twitter.com/Rancher_Labs'
crunchbase: 'https://www.crunchbase.com/organization/rancher-labs'
- item:
name: MinIO
homepage_url: 'https://min.io/'
repo_url: 'https://github.com/minio/minio'
logo: 'https://min.io/resources/img/logo.svg'
twitter: 'https://twitter.com/minio'
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/us/products/storage-systems/index.aspx'
logo: netapp.svg
twitter: 'https://twitter.com/netapp'
crunchbase: 'https://www.crunchbase.com/organization/netapp'
- 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
twitter: 'https://twitter.com/openio'
crunchbase: 'https://www.crunchbase.com/organization/openio'
- item:
name: OpenSDS
homepage_url: 'https://www.opensds.io/'
repo_url: 'https://github.com/opensds/opensds'
logo: opensds.svg
twitter: 'https://twitter.com/opensds_io'
crunchbase: 'https://www.crunchbase.com/organization/opensds'
- item:
name: Portworx
homepage_url: 'https://portworx.com/'
logo: portworx.svg
twitter: 'https://twitter.com/portwx'
crunchbase: 'https://www.crunchbase.com/organization/portworx'
- item:
name: Pure Storage
homepage_url: 'https://www.purestorage.com/'
logo: pure-storage.svg
twitter: 'https://twitter.com/PureStorage'
crunchbase: 'https://www.crunchbase.com/organization/pure-storage'
- 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: Reduxio
homepage_url: 'https://www.reduxio.com/'
logo: reduxio.svg
twitter: 'https://twitter.com/reduxiosystems'
crunchbase: 'https://www.crunchbase.com/organization/reduxio'
- item:
name: Robin Systems
homepage_url: 'https://robin.io/'
logo: robin-systems.svg
twitter: 'https://twitter.com/Robin4K8S'
crunchbase: 'https://www.crunchbase.com/organization/robin-systems'
- item:
name: Rook
homepage_url: 'https://rook.io/'
project: incubating
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: Scality RING
homepage_url: 'https://www.scality.com/products/ring/'
logo: ring.svg
twitter: 'https://twitter.com/scality'
crunchbase: 'https://www.crunchbase.com/organization/scality'
- item:
name: StorageOS
homepage_url: 'https://storageos.com/'
logo: 'https://storageos.com/wp-content/themes/storageOS/images/logo.svg'
twitter: 'https://twitter.com/Storage_OS'
crunchbase: 'https://www.crunchbase.com/organization/storageos'
- item:
name: Swift
homepage_url: 'https://docs.openstack.org/swift/latest/'
repo_url: 'https://github.com/openstack/swift'
logo: openstack-swift.svg
crunchbase: 'https://www.crunchbase.com/organization/openstack'
- item:
name: Triton Object Storage
homepage_url: 'https://www.joyent.com/triton/object-storage'
repo_url: 'https://github.com/joyent/manta'
logo: triton-object-storage.svg
twitter: 'https://twitter.com/joyent'
crunchbase: 'https://www.crunchbase.com/organization/joyent'
- item:
name: Velero
homepage_url: 'https://velero.io'
repo_url: 'https://github.com/heptio/velero'
logo: project-velero.svg
twitter: 'https://twitter.com/projectvelero'
crunchbase: 'https://www.crunchbase.com/organization/vmware'
- item:
name: YRCloudFile
homepage_url: 'http://www.yanrongyun.com/solution/k8s-storage'
logo: yanrong.svg
crunchbase: 'https://www.crunchbase.com/organization/yanrong'
- item:
name: Zenko
homepage_url: 'https://www.zenko.io'
repo_url: 'https://github.com/scality/zenko'
logo: zenko.svg
twitter: 'https://twitter.com/zenko'
crunchbase: 'https://www.crunchbase.com/organization/scality'
- subcategory:
name: Container Runtime
items:
- item:
name: containerd
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'
- item:
name: CRI-O
homepage_url: 'https://cri-o.io/'
project: incubating
repo_url: 'https://github.com/cri-o/cri-o'
logo: cri-o.svg
crunchbase: 'https://www.crunchbase.com/organization/cloud-native-computing-foundation'
- item:
name: Firecracker
homepage_url: 'https://firecracker-microvm.github.io/'
repo_url: 'https://github.com/firecracker-microvm/firecracker'
logo: firecracker.svg
twitter: 'https://twitter.com/awscloud'
crunchbase: 'https://www.crunchbase.com/organization/amazon-web-services'
- item:
name: gVisor
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: Kata Containers
homepage_url: 'https://katacontainers.io/'
repo_url: 'https://github.com/kata-containers/runtime'
logo: kata.svg
twitter: 'https://twitter.com/KataContainers'
crunchbase: 'https://www.crunchbase.com/organization/openstack'
- item:
name: lxd
homepage_url: 'https://linuxcontainers.org/lxd/'
repo_url: 'https://github.com/lxc/lxd'
logo: lxd.svg
twitter: 'https://twitter.com/Canonical'
crunchbase: 'https://www.crunchbase.com/organization/canonical-ltd'
- item:
name: Nabla Containers
homepage_url: 'https://nabla-containers.github.io/'
repo_url: 'https://github.com/nabla-containers/runnc'
logo: nabla-containers.svg
crunchbase: 'https://www.crunchbase.com/organization/ibm'
- item:
name: Pouch
homepage_url: 'https://github.com/alibaba/pouch'
repo_url: 'https://github.com/alibaba/pouch'
logo: pouch.svg
twitter: 'https://twitter.com/pouchcontainer'
crunchbase: 'https://www.crunchbase.com/organization/alibaba-cloud'
- item:
name: runc
homepage_url: 'https://www.opencontainers.org/'
repo_url: 'https://github.com/opencontainers/runc'
logo: oci-runc.svg
twitter: 'https://twitter.com/OCI_ORG'
crunchbase: 'https://www.crunchbase.com/organization/open-container-initiative'
- item:
name: Singularity
homepage_url: 'https://sylabs.io/'
repo_url: 'https://github.com/sylabs/singularity'
logo: singularity.svg
twitter: 'https://twitter.com/SingularityApp'
crunchbase: 'https://www.crunchbase.com/organization/sylabs'
- item:
name: SmartOS
homepage_url: 'https://www.joyent.com/smartos'
repo_url: 'https://github.com/joyent/smartos-live'
logo: smartos.svg
twitter: 'https://twitter.com/joyent'
crunchbase: 'https://www.crunchbase.com/organization/joyent'
- item:
name: Unik
homepage_url: 'https://github.com/solo-io/unik'
repo_url: 'https://github.com/solo-io/unik'
logo: unik.svg
twitter: 'https://twitter.com/projectunik'
crunchbase: 'https://www.crunchbase.com/organization/solo-io'
- subcategory:
name: Cloud Native Network
items:
- item:
name: Aporeto
homepage_url: 'https://www.aporeto.com/'
logo: 'https://www.cncf.io/wp-content/uploads/2017/02/aporeto-1.svg'
twitter: 'https://twitter.com/aporeto'
crunchbase: 'https://www.crunchbase.com/organization/aporeto'
- item:
name: Aviatrix
homepage_url: 'https://www.aviatrix.com/'
logo: aviatrix.svg
twitter: 'https://twitter.com/aviatrixsys'
crunchbase: 'https://www.crunchbase.com/organization/aviatrix'
- item:
name: Big Switch Networks
homepage_url: 'https://www.bigswitch.com/'
logo: bigswitch.svg
twitter: 'https://twitter.com/bigswitch'
crunchbase: 'https://www.crunchbase.com/organization/big-switch-networks'
- item:
name: Cilium
homepage_url: 'https://cilium.io/'
repo_url: 'https://github.com/cilium/cilium'
logo: cilium.svg
twitter: 'https://twitter.com/ciliumproject'
crunchbase: 'https://www.crunchbase.com/organization/covalent-io'
- item:
name: Container Network Interface (CNI)
homepage_url: 'https://github.com/containernetworking'
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'
- item:
name: Contiv
homepage_url: 'https://contivpp.io'
repo_url: 'https://github.com/contiv/vpp'
logo: contiv.svg
twitter: 'https://twitter.com/CiscoCloud'
crunchbase: 'https://www.crunchbase.com/organization/cisco'
- item:
name: Cumulus
homepage_url: 'https://cumulusnetworks.com'
logo: cumulus.svg
twitter: 'https://twitter.com/CumulusNetworks'
crunchbase: 'https://www.crunchbase.com/organization/cumulus-networks'
- item:
name: DANM
homepage_url: 'https://github.com/nokia/danm'
repo_url: 'https://github.com/nokia/danm'
stock_ticker: NOK
logo: danm.svg
crunchbase: 'https://www.crunchbase.com/organization/nokia'
- item:
name: FD.io
homepage_url: 'https://fd.io/'
repo_url: 'https://github.com/FDio/vpp'
logo: fdio.svg
twitter: 'https://twitter.com/FDioProject'
crunchbase: 'https://www.crunchbase.com/organization/fd-io'
- item:
name: Flannel
homepage_url: 'https://github.com/coreos/flannel/'
repo_url: 'https://github.com/coreos/flannel'
stock_ticker: IBM
logo: flannel.svg
twitter: 'https://twitter.com/coreos'
crunchbase: 'https://www.crunchbase.com/organization/red-hat'
- item:
name: GuardiCore Centra
homepage_url: 'https://www.guardicore.com/workload-protection-hybrid-cloud/'
logo: guardi-core-centra.svg
twitter: 'https://twitter.com/guardicore'
crunchbase: 'https://www.crunchbase.com/organization/guardicore'
- item:
name: Kube-OVN
homepage_url: 'https://github.com/alauda/kube-ovn'
repo_url: 'https://github.com/alauda/kube-ovn'
logo: kube-ovn.svg
crunchbase: 'https://www.crunchbase.com/organization/alauda'
- item:
name: Ligato
homepage_url: 'https://ligato.io/'
repo_url: 'https://github.com/ligato/vpp-agent'