forked from cncf/landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessed_landscape.yml
20814 lines (20812 loc) · 961 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: 371386679296
effective_ticker: BABA
image_data:
fileName: alibaba-cloud.svg
hash: GWMevupgZNEdDRmqgILzUnjR6McaQGkwTJaVE82xEAY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-15T13:30:09.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: 858887487488
effective_ticker: AMZN
image_data:
fileName: amazon-web-services.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-15T19:25:48.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: 'https://www.linkedin.com/company/baidu-inc'
ticker: BIDU
kind: market_cap
cncf_membership_data:
cncf_member: gold
yahoo_finance_data:
market_cap: 70063415296
effective_ticker: BIDU
image_data:
fileName: baidu-cloud.svg
hash: QTuh9fzjeeMPheHPWKadx3AhctGMv9ug8ak6wC6ykRY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-09-07T15:11:46.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: 'https://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-10-15T22:05:24.000Z
- item:
name: Exoscale
homepage_url: 'https://www.exoscale.com/'
logo: 'https://www.exoscale.com/static/files/exoscale-logo.svg'
twitter: 'https://twitter.com/exoscale'
crunchbase: 'https://www.crunchbase.com/organization/exoscale'
crunchbase_data:
name: Exoscale
description: 'Exoscale is the cloud hosting platform for SaaS companies, developers and systems administrators.'
num_employees_min: 11
num_employees_max: 50
homepage: 'https://www.exoscale.ch'
city: Crissier
region: Vaud
country: Switzerland
twitter: 'https://twitter.com/exoscale'
linkedin: 'https://www.linkedin.com/company/exoscale'
cncf_membership_data:
cncf_member: silver
image_data:
fileName: exoscale.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-15T05:48:00.000Z
- item:
name: Fujitsu K5
homepage_url: 'http://www.fujitsu.com/us/services/hybrid-cloud/'
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: 'https://www.linkedin.com/company/1374'
ticker: '6702'
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 13376338944
effective_ticker: FJTSF
image_data:
fileName: fujitsu-k5.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-15T17:30:04.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: 'https://www.linkedin.com/company/google'
ticker: GOOG
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 762930069504
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-10-15T20:00:01.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
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: 'https://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-10-15T07:49:13.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/ibm/'
ticker: IBM
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 128818954240
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-10-15T19:55:09.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: 'https://www.linkedin.com/company/joyent'
kind: funding
funding: 130999998
github_data:
stars: 952
license: Mozilla Public License 2.0
description: 'Joyent Triton DataCenter: a cloud management platform with first class support for containers.'
latest_commit_date: '2018-09-21T00:00:00.000Z'
latest_commit_link: /joyent/triton/commit/65074b7790297c74ed3421fa54f38665b7804c9e
contributors_count: 28
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-09-21T19:32:51.000Z
- item:
name: Microsoft Azure
homepage_url: 'https://azure.microsoft.com/en-us/'
logo: 'https://events.linuxfoundation.org/wp-content/uploads/2018/09/microsoft-azure.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: 'https://www.linkedin.com/company/microsoft'
ticker: MSFT
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 825100468224
effective_ticker: MSFT
image_data:
fileName: microsoft-azure.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-15T23:00:00.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 an integrated cloud applications and platform services firm that offers complete SaaS application suites for ERP, HCM and CX.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'https://www.oracle.com/index.html'
city: Redwood Shores
region: California
country: United States
twitter: 'https://twitter.com/Oracle'
linkedin: 'https://www.linkedin.com/company/oracle/'
ticker: ORCL
kind: market_cap
cncf_membership_data:
cncf_member: platinum
yahoo_finance_data:
market_cap: 178520719360
effective_ticker: ORCL
image_data:
fileName: oracle-cloud.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-15T23:05:14.000Z
- item:
name: Packet
homepage_url: 'https://www.packet.com/'
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: 51
num_employees_max: 100
homepage: 'https://www.packet.com'
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: 36567845
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-10-10T15:30:57.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: 332204769280
effective_ticker: TCEHY
image_data:
fileName: tencent-cloud.svg
hash: 8lyQ008CrQ0AhWYe0J8gO3EQJ8VPmGDvokqjpcaLDDU=
best_practice_data:
badge: false
percentage: null
- category:
name: Provisioning
subcategories:
- subcategory:
name: Automation & Configuration
items:
- item:
name: Ansible
homepage_url: 'https://www.ansible.com/'
repo_url: 'https://github.com/ansible/ansible'
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: 'https://www.linkedin.com/company/red-hat'
ticker: RHT
kind: market_cap
github_data:
stars: 33121
license: GNU General Public License v3.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-10-15T00:00:00.000Z'
latest_commit_link: /ansible/ansible/commit/96db9a55e25024078c6fd3a782af3513cd4c015b
release_date: '2018-10-04T05:53:00Z'
release_link: 'https://github.com/ansible/ansible/releases'
contributors_count: 3865
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: 21739827200
effective_ticker: RHT
image_data:
fileName: ansible.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-15T23:07:05.000Z
- 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: 858887487488
effective_ticker: AMZN
image_data:
fileName: aws-cloud-formation.svg
hash: a7lcG+AKWlXuHvMyJbSGAM2kFXcIWgfr8EgM9UADNkM=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-05T22:54:14.000Z
- item:
name: BOSH
homepage_url: 'https://bosh.io/docs/'
repo_url: 'https://github.com/cloudfoundry/bosh'
logo: ./hosted_logos/cloudfoundry-bosh.svg
twitter: 'https://twitter.com/cloudfoundry'
crunchbase: 'https://www.crunchbase.com/organization/cloud-foundry'
crunchbase_data:
name: Cloud Foundry Foundation
description: Cloud Foundry Foundation is an Independent non-profit organization that supports the Cloud Foundry collection of open source projects.
num_employees_min: 51
num_employees_max: 100
homepage: 'https://www.cloudfoundry.org/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/cloudfoundry'
linkedin: 'https://www.linkedin.com/company/2509135'
github_data:
stars: 1628
license: Apache License 2.0
description: >-
Cloud Foundry BOSH is an open source tool chain for release engineering, deployment and lifecycle management of large scale distributed
services.
latest_commit_date: '2018-10-10T00:00:00.000Z'
latest_commit_link: /cloudfoundry/bosh/commit/eac5936994ab44d263a6b158e85dc3c5977ffad1
release_date: '2018-10-02T12:35:13Z'
release_link: 'https://github.com/cloudfoundry/bosh/releases'
contributors_count: 257
contributors_link: 'https://github.com/cloudfoundry/bosh/graphs/contributors'
github_start_commit_data:
start_commit_link: /cloudfoundry/bosh/commit/37822ce7d8a4004b535258508c31be9fb67774c2
start_date: '2010-08-19T02:19:00Z'
cncf_membership_data:
cncf_member: nonprofit
image_data:
fileName: bosh.svg
hash: gWg4x44z20bNAEVebdDpl6BDi1EczgaaHSCUFTOgZL0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-12T07:48:39.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: 'https://www.linkedin.com/company/cfengine'
kind: funding
funding: 13000000
github_data:
stars: 299
license: Other
description: CFEngine Community
latest_commit_date: '2018-10-15T00:00:00.000Z'
latest_commit_link: /cfengine/core/commit/944271499bb0a658dbedff35586e802910fefc32
release_date: '2018-06-28T15:01:25Z'
release_link: 'https://github.com/cfengine/core/releases'
contributors_count: 93
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-09-14T08:35:05.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: 5503
license: Apache License 2.0
description: 'A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure.'
latest_commit_date: '2018-10-15T00:00:00.000Z'
latest_commit_link: /chef/chef/commit/2c9017cd97ff7c8079945b54d03b84a077191fc8
release_date: '2018-10-15T12:22:51Z'
release_link: 'https://github.com/chef/chef/releases'
contributors_count: 564
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-10-15T13:39:05.000Z
- item:
name: Cloudify
homepage_url: 'https://cloudify.co'
repo_url: 'https://github.com/cloudify-cosmo/cloudify-manager'
logo: ./hosted_logos/cloudify.svg
crunchbase: 'https://www.crunchbase.com/organization/cloudify-co'
crunchbase_data:
name: Cloudify
description: Cloudify specializes in IT operations automation technology that manages application and network services through open orchestration
num_employees_min: 11
num_employees_max: 50
homepage: 'http://cloudify.co'
city: Herzliya
region: Tel Aviv
country: Israel
twitter: 'https://twitter.com/CloudifySource'
linkedin: 'https://www.linkedin.com/company/cloudifyco/'
github_data:
stars: 66
license: Apache License 2.0
description: Cloudify's manager related code
latest_commit_date: '2018-10-15T00:00:00.000Z'
latest_commit_link: /cloudify-cosmo/cloudify-manager/commit/d04c150f64d0f9953c42a69a234cce8050555770
release_date: '2018-10-03T11:16:37Z'
release_link: 'https://github.com/cloudify-cosmo/cloudify-manager/releases'
contributors_count: 49
contributors_link: 'https://github.com/cloudify-cosmo/cloudify-manager/graphs/contributors'
github_start_commit_data:
start_commit_link: /cloudify-cosmo/cloudify-manager/commit/134865c1e1f9f886fbc6a7e9db5f14a1a1d5edba
start_date: '2012-12-16T07:56:17Z'
cncf_membership_data:
cncf_member: false
image_data:
fileName: cloudify.svg
hash: IER9YnUD2jKApmomp6t+HpO7IT2wy9yuUG7QAZWYWW8=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-15T11:24:27.000Z
- 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: 159
license: Other
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-10-15T00:00:00.000Z'
latest_commit_link: /digitalrebar/provision/commit/e375c4cd25c0504732aa90afef956748d5f37845
contributors_count: 17
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: pkiNYdwJFFr7hhqi4a8bOMmSxd+4idLsQX52nozI894=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-09-13T15:28:30.000Z
- item:
name: Foreman
homepage_url: 'https://theforeman.org/'
repo_url: 'https://github.com/theforeman/foreman'
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: 1522
license: GNU General Public License v3.0
description: 'an application that automates the lifecycle of servers '
latest_commit_date: '2018-10-15T00:00:00.000Z'
latest_commit_link: /theforeman/foreman/commit/7673103014073bf01908b5e7252956d5b35d4efa
release_date: '2018-09-04T09:55:08Z'
release_link: 'https://github.com/theforeman/foreman/releases'
contributors_count: 274
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-10-04T13:03:57.000Z
- item:
name: Infrakit
homepage_url: 'https://github.com/docker/infrakit'
repo_url: 'https://github.com/docker/infrakit'
logo: ./hosted_logos/infrakit.svg
twitter: 'https://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: 334702133
github_data:
stars: 2078
license: Apache License 2.0
description: 'A toolkit for creating and managing declarative, self-healing infrastructure.'
latest_commit_date: '2018-10-15T00:00:00.000Z'
latest_commit_link: /docker/infrakit/commit/f6ca83ba379fb32d98358918e86cb7a498c769fe
contributors_count: 45
contributors_link: 'https://github.com/docker/infrakit/graphs/contributors'
github_start_commit_data:
start_commit_link: /docker/infrakit/commit/9dfcbda05301745accfa2d3d3b51a9bf7e5ef666
start_date: '2016-04-11T18:12:24Z'
cncf_membership_data:
cncf_member: platinum
image_data:
fileName: infrakit.svg
hash: yoCgWN4zCn7SLpSjmOx2Aa7yu4XYi4u+vR/dFXmWgSE=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-11T17:07:44.000Z
- item:
name: Juju
homepage_url: 'https://jujucharms.com/'
repo_url: 'https://github.com/juju/juju'
logo: 'https://assets.ubuntu.com/v1/d2041fee-juju_black-orange_hex+(Alex%2BMilazzo%27s%2Bconflicted%2Bcopy%2B2016-07-18).svg'
twitter: 'https://twitter.com/ubuntu'
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: 501
num_employees_max: 1000
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: 1248
license: GNU Affero General Public License v3.0
description: juju is devops distilled
latest_commit_date: '2018-10-15T00:00:00.000Z'
latest_commit_link: /juju/juju/commit/404e2b2f75a9213c4f3d3c7141c0b17d34f4d891
release_date: '2018-10-08T13:25:12Z'
release_link: 'https://github.com/juju/juju/releases'
contributors_count: 104
contributors_link: 'https://github.com/juju/juju/graphs/contributors'
github_start_commit_data:
start_commit_link: /juju/juju/commit/04811115d7729e219e77244b7aed2164c48bae68
start_date: '2011-08-23T15:10:42Z'
cncf_membership_data:
cncf_member: silver
image_data:
fileName: juju.svg
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-15T19:29:04.000Z
- item:
name: Kubicorn
homepage_url: 'http://kubicorn.io/'
repo_url: 'https://github.com/kubicorn/kubicorn'
logo: ./hosted_logos/kubicorn.svg
twitter: 'https://twitter.com/kubicornk8s'
crunchbase: 'https://www.crunchbase.com/organization/kubicorn'
crunchbase_data:
name: Kubicorn
description: Infrastructure Automation
num_employees_min: null
num_employees_max: null
homepage: 'https://github.com/kris-nova/kubicorn'
city: Denver
region: Colorado
country: United States
twitter: null
linkedin: null
github_data:
stars: 1322
license: Apache License 2.0
description: 'Simple, cloud native infrastructure for Kubernetes. '
latest_commit_date: '2018-10-13T00:00:00.000Z'
latest_commit_link: /kubicorn/kubicorn/commit/4c7f3623e9188fba43778271afe161a4facfb657
contributors_count: 77
contributors_link: 'https://github.com/kubicorn/kubicorn/graphs/contributors'
github_start_commit_data:
start_commit_link: /kubicorn/kubicorn/commit/dc81f668edafc784063de920475b766b72f3c9fe
start_date: '2017-06-10T06:49:53Z'
cncf_membership_data:
cncf_member: false
image_data:
fileName: kubicorn.svg
hash: mH6YNYQgmrS7o77QovZiqO7uNXVe50dAGBY7vZRARKI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2018-10-13T19:47:43.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: 334702133
github_data:
stars: 4780
license: Apache License 2.0
description: 'A toolkit for building secure, portable and lean operating systems for containers'
latest_commit_date: '2018-10-15T00:00:00.000Z'
latest_commit_link: /linuxkit/linuxkit/commit/40905a21171967550c6e45e4687055ae375769e3
contributors_count: 109
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-10-11T17:07:44.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: 501
num_employees_max: 1000
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: 44
license: GNU Affero General Public License v3.0
description: Official MAAS repository mirror. (Do not submit pull requests or bugs here; use Launchpad instead.)
latest_commit_date: '2018-10-12T00:00:00.000Z'
latest_commit_link: /maas/maas/commit/1425f6d4cb7056fc4e4b49f6cc041306b58eea31
release_date: '2018-10-15T15:40:56Z'
release_link: 'https://github.com/maas/maas/releases'
contributors_count: 47
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-10-15T17:42:10.000Z
- item:
name: ManageIQ
homepage_url: 'https://manageiq.org/'
repo_url: 'https://github.com/ManageIQ/manageiq'
logo: 'http://manageiq.org/assets/images/logo/manageiq-logo-standard-vertical.svg'
twitter: 'https://twitter.com/manageiq'
crunchbase: 'https://www.crunchbase.com/organization/manageiq'
crunchbase_data:
name: ManageIQ
description: "ManageIQ is a commercial open-source software\_firm enabling organizations to deploy, manage and optimize private, public and hybrid\_clouds."
num_employees_min: 51
num_employees_max: 100
homepage: 'http://www.manageiq.com'
city: Mahwah
region: New Jersey
country: United States
twitter: 'http://twitter.com/manageiq'
linkedin: 'https://www.linkedin.com/company/56141'
kind: funding
funding: 5400000
github_data:
stars: 731