forked from cncf/landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessed_landscape.yml
17896 lines (17895 loc) · 823 KB
/
processed_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
# THIS FILE IS GENERATED AUTOMATICALLY!
landscape:
- category:
name: Cloud
subcategories:
- subcategory:
name: Public
items:
- item:
name: Alibaba Cloud
homepage_url: 'https://www.alibabacloud.com/'
logo: ./hosted_logos/alibaba-cloud.svg
twitter: 'https://twitter.com/alibaba_cloud'
crunchbase: 'https://www.crunchbase.com/organization/alibaba-cloud'
crunchbase_data:
name: Alibaba Cloud
description: Alibaba Cloud develops highly scalable cloud computing and data management services.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.alibabacloud.com/'
city: Hangzhou
region: Zhejiang
country: China
twitter: 'https://twitter.com/alibaba_cloud'
linkedin: 'https://www.linkedin.com/company/alibaba-cloud-computing-company'
ticker: BABA
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 468801617920
effective_ticker: BABA
image_data:
fileName: alibaba-cloud.svg
hash: GWMevupgZNEdDRmqgILzUnjR6McaQGkwTJaVE82xEAY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-02T19:00:51.000Z
- item:
name: Amazon Web Services
homepage_url: 'https://aws.amazon.com/'
logo: 'https://upload.wikimedia.org/wikipedia/commons/9/93/Amazon_Web_Services_Logo.svg'
twitter: 'https://twitter.com/awscloud'
crunchbase: 'https://www.crunchbase.com/organization/amazon-web-services'
crunchbase_data:
name: Amazon Web Services
description: Amazon Web Services provides information technology infrastructure services to businesses in the form of web services.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://aws.amazon.com'
city: Seattle
region: Washington
country: United States
twitter: 'http://twitter.com/awscloud'
linkedin: 'https://www.linkedin.com/company/amazon-web-services/'
ticker: AMZN
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 762813218816
effective_ticker: AMZN
image_data:
fileName: amazon-web-services.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T23:37:33.000Z
- item:
name: Azure Cloud
homepage_url: 'https://azure.microsoft.com/en-us/'
logo: 'https://www.datocms-assets.com/2885/1513729661-azure_logo_blue.svg'
twitter: 'https://twitter.com/Azure'
crunchbase: 'https://www.crunchbase.com/organization/microsoft'
crunchbase_data:
name: Microsoft
description: 'Microsoft is a software corporation that develops, manufactures, licenses, supports, and sells a range of software products and services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.microsoft.com'
city: Redmond
region: Washington
country: United States
twitter: 'http://twitter.com/Microsoft'
linkedin: 'http://www.linkedin.com/company/microsoft'
ticker: MSFT
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 722758598656
effective_ticker: MSFT
image_data:
fileName: azure-cloud.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-04T00:25:02.000Z
- item:
name: Baidu Cloud
homepage_url: 'https://cloud.baidu.com/'
logo: ./hosted_logos/baidu-cloud.svg
crunchbase: 'https://www.crunchbase.com/organization/baidu'
crunchbase_data:
name: Baidu
description: Baidu is a Chinese website and search engine that enables individuals to obtain information and find what they need.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.baidu.com'
city: Beijing
region: Beijing
country: China
twitter: 'https://twitter.com/BaiduResearch'
linkedin: 'http://www.linkedin.com/company/baidu-inc'
ticker: BIDU
kind: market_cap
cncf_membership_data:
cncf_member: gold
yahoo_finance_data:
market_cap: 87896973312
effective_ticker: BIDU
image_data:
fileName: baidu-cloud.svg
hash: QTuh9fzjeeMPheHPWKadx3AhctGMv9ug8ak6wC6ykRY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-02T22:56:01.000Z
- item:
name: DigitalOcean
homepage_url: 'https://www.digitalocean.com/'
logo: 'https://upload.wikimedia.org/wikipedia/commons/f/ff/DigitalOcean_logo.svg'
twitter: 'https://twitter.com/digitalocean'
crunchbase: 'https://www.crunchbase.com/organization/digitalocean'
crunchbase_data:
name: DigitalOcean
description: DigitalOcean is an IaaS company that delivers a seamless way for developers and businesses to deploy and scale any application in the cloud.
num_employees_min: 251
num_employees_max: 500
homepage: 'http://www.digitalocean.com'
city: New York
region: New York
country: United States
twitter: 'http://twitter.com/digitalocean'
linkedin: 'http://www.linkedin.com/company/digitalocean'
kind: funding
funding: 305405800
cncf_membership_data:
cncf_member: gold
image_data:
fileName: digital-ocean.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T14:47:54.000Z
- item:
name: Fujitsu K5
homepage_url: 'http://www.fujitsu.com/us/solutions/cloud/k5/service/'
logo: 'https://upload.wikimedia.org/wikipedia/commons/5/53/Fujitsu-Logo.svg'
stock_ticker: FJTSF
twitter: 'https://twitter.com/Fujitsu_Global'
crunchbase: 'https://www.crunchbase.com/organization/fujitsu'
crunchbase_data:
name: Fujitsu
description: Fujitsu provides information technology and communications solutions.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.fujitsu.com'
city: Tokyo
region: Tokyo
country: Japan
twitter: 'http://twitter.com/Fujitsu_Global'
linkedin: 'http://www.linkedin.com/company/1374'
ticker: '6702'
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 12717054976
effective_ticker: FJTSF
image_data:
fileName: fujitsu-k5.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T15:25:12.000Z
- item:
name: Google Cloud
homepage_url: 'https://cloud.google.com/'
logo: ./hosted_logos/google-cloud.svg
twitter: 'https://twitter.com/GCPcloud'
crunchbase: 'https://www.crunchbase.com/organization/google'
crunchbase_data:
name: Google
description: Google is a multinational corporation that is specialized in internet-related services and products.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.google.com/'
city: Mountain View
region: California
country: United States
twitter: 'https://twitter.com/google'
linkedin: 'http://www.linkedin.com/company/google'
ticker: GOOG
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 711522254848
effective_ticker: GOOG
image_data:
fileName: google-cloud.svg
hash: hdLC4SucPSQo9MPKXVQH9KmN0TQUxJ+WexTmMpEC6AQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T23:30:00.000Z
- item:
name: Huawei
homepage_url: 'https://www.huaweicloud.com/en-us/about/about_us.html'
logo: 'https://upload.wikimedia.org/wikipedia/commons/0/00/Huawei.svg'
twitter: 'https://twitter.com/HuaweiCloudCore'
crunchbase: 'https://www.crunchbase.com/organization/huawei'
crunchbase_data:
name: Huawei Technologies
description: 'Huawei Technologies provides infrastructure application software and devices with wireline, wireless, and IP technologies.'
num_employees_min: 5001
num_employees_max: 10000
homepage: 'http://huawei.com'
city: Shenzhen
region: Guangdong
country: China
twitter: 'https://twitter.com/Huawei'
linkedin: 'http://www.linkedin.com/company/3014'
cncf_membership_data:
cncf_member: platinum
image_data:
fileName: huawei.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-02T17:49:03.000Z
- item:
name: IBM Cloud
homepage_url: 'https://www.ibm.com/cloud/'
logo: ./hosted_logos/ibm-cloud.svg
twitter: 'https://twitter.com/IBMcloud'
crunchbase: 'https://www.crunchbase.com/organization/ibm'
crunchbase_data:
name: IBM
description: 'IBM is an IT technology and consulting firm providing computer hardware, software, and infrastructure and hosting services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.ibm.com/'
city: Armonk
region: New York
country: United States
twitter: 'http://twitter.com/IBM'
linkedin: 'https://www.linkedin.com/company-beta/1009?pathWildcard=1009'
ticker: IBM
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 130342281216
effective_ticker: IBM
image_data:
fileName: ibm-cloud.svg
hash: eZxIibwudBXqy3VKTpiGHKR9vnXpA0wXTm0/gOJDssc=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T17:02:53.000Z
- item:
name: Joyent
homepage_url: 'https://www.joyent.com/'
repo_url: 'https://github.com/joyent/triton'
logo: ./hosted_logos/joyent.svg
twitter: 'https://twitter.com/joyent'
crunchbase: 'https://www.crunchbase.com/organization/joyent'
crunchbase_data:
name: Joyent
description: Joyent is a cloud infrastructure and big data analytics company offering a solution that powers real-time web and mobile applications.
num_employees_min: 101
num_employees_max: 250
homepage: 'http://www.joyent.com'
city: San Francisco
region: California
country: United States
twitter: 'http://twitter.com/joyent'
linkedin: 'http://www.linkedin.com/company/joyent'
kind: funding
funding: 130999998
github_data:
stars: 912
license: MPL-2.0
description: 'Joyent Triton DataCenter: a cloud management platform with first class support for containers.'
latest_commit_date: '2017-09-08T00:00:00.000Z'
latest_commit_link: /joyent/triton/commit/a8e5090385d6c9a83beda60d8d25e8d42a64fddf
contributors_count: 30
contributors_link: 'https://github.com/joyent/triton/graphs/contributors'
github_start_commit_data:
start_commit_link: /joyent/triton/commit/a777396ef99a9cd48da01e03c6bd5a841b2c6a5e
start_date: '2014-09-03T02:18:15Z'
cncf_membership_data:
cncf_member: silver
image_data:
fileName: joyent.svg
hash: bd1S99GnfaBr69W6swegonYwrTlDRKphfQjlRr92HY8=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T16:21:53.000Z
- item:
name: Oracle Cloud
homepage_url: 'https://cloud.oracle.com/home'
logo: 'https://cdn.worldvectorlogo.com/logos/oracle-6.svg'
twitter: 'https://twitter.com/oraclecloud'
crunchbase: 'https://www.crunchbase.com/organization/oracle'
crunchbase_data:
name: Oracle
description: Oracle is a computer technology corporation developing and marketing computer hardware systems and enterprise software products.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://oracle.com'
city: Redwood Shores
region: California
country: United States
twitter: 'http://twitter.com/Oracle'
linkedin: 'http://www.linkedin.com/company/1028'
ticker: ORCL
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 183948886016
effective_ticker: ORCL
image_data:
fileName: oracle-cloud.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-01T19:20:05.000Z
- item:
name: Packet
homepage_url: 'https://www.packet.net/'
logo: ./hosted_logos/packet.svg
twitter: 'https://twitter.com/packethost'
crunchbase: 'https://www.crunchbase.com/organization/packet-host'
crunchbase_data:
name: Packet
description: Packet is a bare metal cloud built for developers.
num_employees_min: 11
num_employees_max: 50
homepage: 'https://www.packet.net'
city: New York
region: New York
country: United States
twitter: 'https://twitter.com/packethost'
linkedin: 'https://www.linkedin.com/company/packet-host'
kind: funding
funding: 11567845
cncf_membership_data:
cncf_member: silver
image_data:
fileName: packet.svg
hash: gBA6qYRzkhT/nw/Um6KeezoG1qwgKzBQx1rBGNmN31c=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T16:35:03.000Z
- item:
name: Tencent Cloud
homepage_url: 'https://cloud.tencent.com/'
logo: ./hosted_logos/tencent-cloud.svg
stock_ticker: TCEHY
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/tencent'
crunchbase_data:
name: Tencent Holdings
description: 'Tencent is a Chinese internet service portal offering value-added internet, mobile, telecom, and online advertising services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'https://www.tencent.com/en-us/'
city: Shenzhen
region: Guangdong
country: China
twitter: null
linkedin: 'https://www.linkedin.com/company/166328/'
ticker: '0700'
kind: market_cap
cncf_membership_data:
cncf_member: gold
yahoo_finance_data:
market_cap: 457188212736
effective_ticker: TCEHY
image_data:
fileName: tencent-cloud.svg
hash: 8lyQ008CrQ0AhWYe0J8gO3EQJ8VPmGDvokqjpcaLDDU=
best_practice_data:
badge: false
percentage: null
- subcategory:
name: Private
items:
- item:
name: Digital Rebar
homepage_url: 'http://rebar.digital/'
repo_url: 'https://github.com/digitalrebar/provision'
logo: ./hosted_logos/digitalrebar.svg
twitter: 'https://twitter.com/digitalrebar'
crunchbase: 'https://www.crunchbase.com/organization/rackn-inc'
crunchbase_data:
name: RackN
description: Hybrid DevOps Software For The Hybrid Enterprise
num_employees_min: 1
num_employees_max: 10
homepage: 'http://www.rackn.com'
city: Austin
region: Texas
country: United States
twitter: 'https://www.twitter.com/rackngo'
linkedin: 'https://www.linkedin.com/company/rackn/'
kind: funding
funding: 800000
github_data:
stars: 92
license: Apache-2.0
description: Digital Rebar Provision is a simple and powerful Golang executable that provides a complete API-driven DHCP/PXE/TFTP provisioning system.
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /digitalrebar/provision/commit/dd97162327dee7c3b4cee6979ba2b7e86d945f23
contributors_count: 12
contributors_link: 'https://github.com/digitalrebar/provision/graphs/contributors'
github_start_commit_data:
start_commit_link: /digitalrebar/provision/commit/317f954bdb794c8754aff69659c830220a71d9fe
start_date: '2017-02-08T15:46:53Z'
cncf_membership_data:
cncf_member: silver
image_data:
fileName: digital-rebar.svg
hash: uULxVzm9qED67JYU0HhpI6QyGWCOo8D2ainoSKOhP7U=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T23:19:54.000Z
- item:
name: Foreman
homepage_url: 'https://theforeman.org/'
repo_url: 'https://github.com/theforeman/foreman'
branch: develop
logo: ./hosted_logos/foreman.svg
twitter: 'https://twitter.com/foremanproject'
crunchbase: 'https://www.crunchbase.com/organization/foreman'
crunchbase_data:
name: Foreman
description: Foreman is an open source lifecycle management tool for physical and virtual servers.
num_employees_min: null
num_employees_max: null
homepage: 'http://theforeman.org/'
city: Raleigh
region: North Carolina
country: United States
twitter: null
linkedin: null
github_data:
stars: 1419
license: Unknown License
description: an application that automates the lifecycle of servers
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /theforeman/foreman/commit/13116f65843944f7cd4973f840d9ba0c76cbda52
release_date: '2018-04-11T18:23:49Z'
release_link: 'https://github.com/theforeman/foreman/releases'
contributors_count: 250
contributors_link: 'https://github.com/theforeman/foreman/graphs/contributors'
github_start_commit_data:
start_commit_link: /theforeman/foreman/commit/5563217a427f3786affdfb1c9e4584f04c0303e7
start_date: '2009-07-13T08:55:23Z'
cncf_membership_data:
cncf_member: false
image_data:
fileName: foreman.svg
hash: z1Whgxkv0IG19wYaIJmAhp/oeD5UC7eTOvvf1QuPodE=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T16:35:36.000Z
- item:
name: MAAS
homepage_url: 'https://maas.io/'
repo_url: 'https://github.com/maas/maas'
logo: ./hosted_logos/maas.svg
twitter: 'https://twitter.com/Canonical'
crunchbase: 'https://www.crunchbase.com/organization/canonical-ltd'
crunchbase_data:
name: Canonical
description: Canonical is a computer software company that markets commercial support and related services for Ubuntu and related projects.
num_employees_min: 11
num_employees_max: 50
homepage: 'http://www.canonical.com'
city: London
region: England
country: United Kingdom
twitter: 'http://twitter.com/Canonical'
linkedin: 'https://www.linkedin.com/company/canonical-ltd-/'
github_data:
stars: 37
license: AGPL-3.0
description: Official MAAS repository mirror. (Do not submit pull requests or bugs here; use Launchpad instead.)
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /maas/maas/commit/2abc01f10e9dc92a1894f3a21a7a1d552868fdae
release_date: '2018-04-16T19:35:20Z'
release_link: 'https://github.com/maas/maas/releases'
contributors_count: 43
contributors_link: 'https://github.com/maas/maas/graphs/contributors'
github_start_commit_data:
start_commit_link: /maas/maas/commit/6fd9157bb077a6ce54a33812cecd6049eed98551
start_date: '2012-01-16T08:33:18Z'
cncf_membership_data:
cncf_member: silver
image_data:
fileName: maas.svg
hash: fsqheVMcIHa0eaed30B3aDmKYe9Ob4bhjOv2ns+S/oA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-01T13:59:08.000Z
- item:
name: OpenStack
homepage_url: 'https://www.openstack.org/'
repo_url: 'https://github.com/openstack/openstack'
logo: 'https://upload.wikimedia.org/wikipedia/commons/e/e6/OpenStack%C2%AE_Logo_2016.svg'
twitter: 'https://twitter.com/OpenStack'
crunchbase: 'https://www.crunchbase.com/organization/openstack'
crunchbase_data:
name: OpenStack
description: OpenStack is the most widely used open source software for building public and private clouds.
num_employees_min: 11
num_employees_max: 50
homepage: 'http://www.openstack.org'
city: Austin
region: Texas
country: United States
twitter: 'http://twitter.com/OpenStack'
linkedin: 'http://www.linkedin.com/company/openstack'
github_data:
stars: 2707
license: Unknown License
description: Repository containing OpenStack repositories
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /openstack/openstack/commit/09ca637eee745625c3c8e58527b2f426abe18501
release_date: '2017-09-20T04:17:12Z'
release_link: 'https://github.com/openstack/openstack/releases'
contributors_count: 1658
contributors_link: 'https://github.com/openstack/openstack/graphs/contributors'
github_start_commit_data:
start_commit_link: /openstack/openstack/commit/1a8546c90100e2e3116b1a74adbeed507ce5e250
start_date: '2013-10-07T17:14:30Z'
cncf_membership_data:
cncf_member: false
image_data:
fileName: open-stack.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T18:38:15.000Z
- item:
name: VMware
homepage_url: 'https://www.vmware.com/'
stock_ticker: VMW
logo: 'https://practice-labs.com/images/vmware-logo.svg'
twitter: 'https://twitter.com/VMware'
crunchbase: 'https://www.crunchbase.com/organization/vmware'
crunchbase_data:
name: VMware
description: VMware is a software company providing cloud and virtualization services.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.vmware.com'
city: Palo Alto
region: California
country: United States
twitter: 'http://twitter.com/VMware'
linkedin: 'http://www.linkedin.com/company/vmware'
ticker: VMW
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 53851013120
effective_ticker: VMW
image_data:
fileName: v-mware.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-02T21:14:06.000Z
- category:
name: Provisioning
subcategories:
- subcategory:
name: Host Management/Tooling
items:
- item:
name: Ansible
homepage_url: 'https://www.ansible.com/'
repo_url: 'https://github.com/ansible/ansible'
branch: devel
logo: 'https://www.elao.com/images/logo_ansible.svg'
twitter: 'https://twitter.com/ansible'
crunchbase: 'https://www.crunchbase.com/organization/red-hat'
crunchbase_data:
name: Red Hat
description: "Red Hat is\_a multinational software company engaged in providing open-source software products to the enterprise community."
num_employees_min: 5001
num_employees_max: 10000
homepage: 'http://www.redhat.com'
city: Raleigh
region: North Carolina
country: United States
twitter: 'http://twitter.com/redhat'
linkedin: 'http://www.linkedin.com/company/red-hat'
ticker: RHT
kind: market_cap
github_data:
stars: 30011
license: GPL-3.0
description: >-
Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy. Avoid writing scripts or custom
code to deploy and update your applications — automate in a language that approaches plain English, using SSH, with no agents to install on
remote systems. https://docs.ansible.com/ansible/
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /ansible/ansible/commit/f75b7a9437ad634877921b0727f8af0cb480e71a
release_date: '2018-04-26T17:45:39Z'
release_link: 'https://github.com/ansible/ansible/releases'
contributors_count: 3436
contributors_link: 'https://github.com/ansible/ansible/graphs/contributors'
github_start_commit_data:
start_commit_link: /ansible/ansible/commit/f31421576b00f0b167cdbe61217c31c21a41ac02
start_date: '2012-02-23T19:17:24Z'
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 29161469952
effective_ticker: RHT
image_data:
fileName: ansible.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T18:26:01.000Z
- item:
name: CFEngine
homepage_url: 'https://cfengine.com/'
repo_url: 'https://github.com/cfengine/core'
logo: 'https://cohesion.nl/wp-content/uploads/2017/05/cfengine.svg'
twitter: 'https://twitter.com/cfengine'
crunchbase: 'https://www.crunchbase.com/organization/cfengine'
crunchbase_data:
name: CFEngine
description: 'CFEngine is a pioneer in IT Automation. It radically simplifies and automates how companies build, consume infrastructure and devices'
num_employees_min: 11
num_employees_max: 50
homepage: 'http://www.cfengine.com'
city: Palo Alto
region: California
country: United States
twitter: 'http://twitter.com/cfengine'
linkedin: 'http://www.linkedin.com/company/cfengine'
kind: funding
funding: 13000000
github_data:
stars: 288
license: Unknown License
description: CFEngine Community
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /cfengine/core/commit/f79146e25e6846ef86fd76382f363a4db02636fb
release_date: '2018-05-03T09:01:19Z'
release_link: 'https://github.com/cfengine/core/releases'
contributors_count: 91
contributors_link: 'https://github.com/cfengine/core/graphs/contributors'
github_start_commit_data:
start_commit_link: /cfengine/core/commit/6cb587a75b008c3d50e58e4017713d3b49622171
start_date: '2008-01-04T08:50:45Z'
cncf_membership_data:
cncf_member: false
image_data:
fileName: cf-engine.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T15:06:19.000Z
- item:
name: Chef
homepage_url: 'https://www.chef.io/'
repo_url: 'https://github.com/chef/chef'
logo: 'https://upload.wikimedia.org/wikipedia/commons/8/8a/Chef_logo.svg'
twitter: 'https://twitter.com/chef'
crunchbase: 'https://www.crunchbase.com/organization/chef'
crunchbase_data:
name: Chef
description: Chef is an automation platform that transforms infrastructure into code.
num_employees_min: 101
num_employees_max: 250
homepage: 'https://www.chef.io/'
city: Seattle
region: Washington
country: United States
twitter: 'http://twitter.com/chef'
linkedin: 'https://www.linkedin.com/company/223176/'
kind: funding
funding: 105000000
github_data:
stars: 5313
license: Apache-2.0
description: 'A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.'
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /chef/chef/commit/92e03cdd565adb06f28bbf1a978a2be1d74e1830
release_date: '2018-05-03T09:24:05Z'
release_link: 'https://github.com/chef/chef/releases'
contributors_count: 552
contributors_link: 'https://github.com/chef/chef/graphs/contributors'
github_start_commit_data:
start_commit_link: /chef/chef/commit/b5117775e86cff40399187b6292c98fba9dc5034
start_date: '2008-03-06T07:31:38Z'
cncf_membership_data:
cncf_member: silver
image_data:
fileName: chef.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-02T22:39:03.000Z
- item:
name: kube-bench
homepage_url: 'https://github.com/aquasecurity/kube-bench'
repo_url: 'https://github.com/aquasecurity/kube-bench'
logo: ./hosted_logos/kube-bench.svg
twitter: 'https://www.twitter.com/aquasecteam'
crunchbase: 'https://www.crunchbase.com/organization/aquasecurity'
crunchbase_data:
name: Aqua Security
description: Aqua Security enables enterprises to secure their virtual container environments from development to production.
num_employees_min: 11
num_employees_max: 50
homepage: 'https://www.aquasec.com'
city: Ramat Gan
region: Tel Aviv
country: Israel
twitter: 'http://twitter.com/AquaSecTeam'
linkedin: 'https://www.linkedin.com/company/10034420'
kind: funding
funding: 38000000
github_data:
stars: 564
license: Apache-2.0
description: The Kubernetes Bench for Security is a Go application that checks whether Kubernetes is deployed according to security best practices
latest_commit_date: '2018-04-20T00:00:00.000Z'
latest_commit_link: /aquasecurity/kube-bench/commit/67786fd3ef68dada59dde92baab67839d6783919
release_date: '2018-04-04T13:01:17Z'
release_link: 'https://github.com/aquasecurity/kube-bench/releases'
contributors_count: 11
contributors_link: 'https://github.com/aquasecurity/kube-bench/graphs/contributors'
github_start_commit_data:
start_commit_link: /aquasecurity/kube-bench/commit/154a140f74549129872100c5e542f86f68f4a95e
start_date: '2017-05-26T09:25:29Z'
cncf_membership_data:
cncf_member: silver
image_data:
fileName: kube-bench.svg
hash: bu7Ts3XaLI6rduwdzALs6mYFHprRi4GBnHwOw26Wi6Q=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T21:45:01.000Z
- item:
name: LinuxKit
homepage_url: 'https://github.com/linuxkit/linuxkit'
repo_url: 'https://github.com/linuxkit/linuxkit'
logo: 'https://raw.githubusercontent.com/linuxkit/linuxkit/master/logo/linux-kit%403x.svg'
twitter: 'https://www.twitter.com/moby'
crunchbase: 'https://www.crunchbase.com/organization/docker'
crunchbase_data:
name: Docker
description: 'Docker is a platform for distributed applications that allows developers and sysadmins to build, ship, and run distributed applications.'
num_employees_min: 101
num_employees_max: 250
homepage: 'https://www.docker.com'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/docker'
linkedin: 'https://www.linkedin.com/company/docker'
kind: funding
funding: 242766694
github_data:
stars: 4291
license: Apache-2.0
description: 'A toolkit for building secure, portable and lean operating systems for containers'
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /linuxkit/linuxkit/commit/cbc7bfdb0e1567a2d50a98b6ecd6187e15c1766f
contributors_count: 95
contributors_link: 'https://github.com/linuxkit/linuxkit/graphs/contributors'
github_start_commit_data:
start_commit_link: /linuxkit/linuxkit/commit/0fa1e68dc65c5f484ce9c2851b5efa2c8617d4f9
start_date: '2015-11-26T15:17:40Z'
cncf_membership_data:
cncf_member: platinum
image_data:
fileName: linux-kit.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-02T09:00:12.000Z
- item:
name: Puppet
homepage_url: 'https://puppet.com/'
repo_url: 'https://github.com/puppetlabs/puppet'
logo: 'https://www.nutanix.com/wp-content/uploads/2017/02/logo_puppet.svg'
twitter: 'https://twitter.com/puppetize'
crunchbase: 'https://www.crunchbase.com/organization/puppet-labs'
crunchbase_data:
name: Puppet
description: Puppet is an information technology automation software company designed for system administrators.
num_employees_min: 251
num_employees_max: 500
homepage: 'https://puppet.com/'
city: Portland
region: Oregon
country: United States
twitter: 'http://twitter.com/puppetlabs'
linkedin: 'http://www.linkedin.com/company/puppet-labs-inc'
kind: funding
funding: 107500000
github_data:
stars: 4976
license: Unknown License
description: Server automation framework and application
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /puppetlabs/puppet/commit/2a8e71baaaab3095e75e33a41c082e577554aa5b
release_date: '2018-04-18T16:08:00Z'
release_link: 'https://github.com/puppetlabs/puppet/releases'
contributors_count: 494
contributors_link: 'https://github.com/puppetlabs/puppet/graphs/contributors'
github_start_commit_data:
start_commit_link: /puppetlabs/puppet/commit/54e9b5e3561977ea063417da12c46aad2a4c1332
start_date: '2005-04-13T15:18:05Z'
cncf_membership_data:
cncf_member: false
image_data:
fileName: puppet.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T22:22:01.000Z
- item:
name: Rundeck
homepage_url: 'https://www.rundeck.com/open-source'
repo_url: 'https://github.com/rundeck/rundeck'
logo: ./hosted_logos/rundeck.svg
twitter: 'https://twitter.com/rundeck'
crunchbase: 'https://www.crunchbase.com/organization/rundeck'
crunchbase_data:
name: Rundeck
description: Job Scheduler and Runbook Automation
num_employees_min: null
num_employees_max: null
homepage: 'http://rundeck.org/'
city: Redwood City
region: California
country: United States
twitter: null
linkedin: null
github_data:
stars: 2444
license: Apache-2.0
description: 'Enable Self-Service Operations: Give specific users access to your existing tools, services, and scripts'
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /rundeck/rundeck/commit/13508a5bdb126d25b9c01803a621a79c940b95d9
release_date: '2018-04-27T20:03:46Z'
release_link: 'https://github.com/rundeck/rundeck/releases'
contributors_count: 95
contributors_link: 'https://github.com/rundeck/rundeck/graphs/contributors'
github_start_commit_data:
start_commit_link: /rundeck/rundeck/commit/41a2ce0991a2c32ffde06f623afb6ec3278fa4c2
start_date: '2010-10-11T21:08:30Z'
cncf_membership_data:
cncf_member: false
image_data:
fileName: rundeck.svg
hash: s00jBStMy/UUeMQluvbZv1HOu/3itsQ+GyIsCd2gCXM=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-03T17:49:33.000Z
- item:
name: SaltStack
homepage_url: 'https://saltstack.com/'
repo_url: 'https://github.com/saltstack/salt'
branch: develop
logo: 'https://www.signalsciences.com/dist/images/integration-logos/salt.svg'
twitter: 'https://twitter.com/SaltStack'
crunchbase: 'https://www.crunchbase.com/organization/saltstack'
crunchbase_data:
name: SaltStack
description: SaltStack is intelligent automation for a software-defined world.
num_employees_min: 51
num_employees_max: 100
homepage: 'http://www.saltstack.com'
city: Lehi
region: Utah
country: United States
twitter: 'http://twitter.com/SaltStack'
linkedin: 'http://www.linkedin.com/company/salt-stack-inc'
kind: funding
funding: 27900000
github_data:
stars: 8802
license: Unknown License
description: >-
Software to automate the management and configuration of any infrastructure or application at scale. Get access to the Salt software package
repository here:
latest_commit_date: '2018-05-03T00:00:00.000Z'
latest_commit_link: /saltstack/salt/commit/98fa44b3a5b1afd751a28fe412fd196bd4d5217a
release_date: '2018-03-05T17:07:30Z'
release_link: 'https://github.com/saltstack/salt/releases'
contributors_count: 2058
contributors_link: 'https://github.com/saltstack/salt/graphs/contributors'
github_start_commit_data:
start_commit_link: /saltstack/salt/commit/7578c4d9f429b91dd8df553fc6ed78f4c8b76e7c
start_date: '2011-02-20T20:18:32Z'
cncf_membership_data:
cncf_member: false
image_data:
fileName: salt-stack.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-05-01T19:35:26.000Z
- subcategory:
name: Infrastructure Automation
items:
- item:
name: AWS CloudFormation
homepage_url: 'https://aws.amazon.com/cloudformation/'
logo: ./hosted_logos/aws-cloudformation.svg
twitter: 'https://twitter.com/awscloudformer'
crunchbase: 'https://www.crunchbase.com/organization/amazon-web-services'
crunchbase_data:
name: Amazon Web Services
description: Amazon Web Services provides information technology infrastructure services to businesses in the form of web services.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://aws.amazon.com'
city: Seattle
region: Washington
country: United States
twitter: 'http://twitter.com/awscloud'
linkedin: 'https://www.linkedin.com/company/amazon-web-services/'
ticker: AMZN
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 762813218816
effective_ticker: AMZN
image_data:
fileName: aws-cloud-formation.svg
hash: qoIRLJpFh7HFcBIz+eKYbxfbDA4AmzVMue5YWctDrZA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-04-14T20:07:58.000Z
- item: