forked from cdfoundation/cdf-landscape
-
Notifications
You must be signed in to change notification settings - Fork 2
/
processed_landscape.yml
1946 lines (1946 loc) · 81.6 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: CI & Pipeline Orchestration
subcategories:
- subcategory:
name: Pipeline Orchestration
items:
- item:
name: CircleCI
homepage_url: 'https://circleci.com/'
logo: circleci.svg
twitter: 'https://twitter.com/circleci'
crunchbase: 'https://www.crunchbase.com/organization/circle-ci'
crunchbase_data:
name: CircleCI
description: CircleCI is the leading continuous integration and delivery platform for teams looking to shorten the distance between idea and delivery.
num_employees_min: 251
num_employees_max: 500
homepage: 'https://circleci.com/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/circleci'
linkedin: 'https://www.linkedin.com/company/circleci/'
parents:
- 'https://www.crunchbase.com/organization/heavybit-industries'
kind: funding
funding: 115000000
image_data:
fileName: circle-ci.svg
hash: H8lvsFywp6u/aOf00kg+1DcsgfR/Z7ysVabFkNfNMto=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-20T16:27:02.000Z
- item:
name: Cloudbees Codeship
description: Ship faster with CI/CD as a Service
homepage_url: 'https://www.cloudbees.com/products/cloudbees-codeship'
logo: cloudbees.svg
twitter: 'https://twitter.com/CloudBees'
crunchbase: 'https://www.crunchbase.com/organization/cloudbees'
crunchbase_data:
name: CloudBees
description: CloudBees develops an end-to-end automated software delivery system that allows companies to balance governance and developer freedom.
num_employees_min: 501
num_employees_max: 1000
homepage: 'http://www.cloudbees.com'
city: San Jose
region: California
country: United States
twitter: 'http://twitter.com/CloudBees'
linkedin: 'https://www.linkedin.com/company/cloudbees'
parents: []
kind: funding
funding: 121200000
image_data:
fileName: cloudbees-codeship.svg
hash: JW/7677Cy+OdGv8ETgXQMjgKtQE57C/FpO9jM+IcDec=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T17:33:35.000Z
- item:
name: GitLab
homepage_url: 'https://about.gitlab.com/'
repo_url: 'https://github.com/gitlabhq/gitlabhq'
url_for_bestpractices: 'https://gitlab.com/gitlab-org/gitlab-ce'
logo: gitlab.svg
twitter: 'https://twitter.com/gitlab'
crunchbase: 'https://www.crunchbase.com/organization/gitlab-com'
crunchbase_data:
name: GitLab
description: GitLab is a web-based open source Git repository manager with wiki and issue tracking features and built-in CI/CD.
num_employees_min: 501
num_employees_max: 1000
homepage: 'http://about.gitlab.com'
city: San Francisco
region: California
country: United States
twitter: 'http://twitter.com/gitlab'
linkedin: 'https://www.linkedin.com/company/5101804'
parents: []
kind: funding
funding: 436200000
github_data:
stars: 22008
license: Other
description: GitLab CE Mirror | Please open new issues in our issue tracker on GitLab.com
latest_commit_date: '2019-09-20T06:00:00.000Z'
latest_commit_link: /gitlabhq/gitlabhq/commit/fc8c74fd0cbe7384038ead2dd2493f5c63d2b98d
contributors_count: 2005
contributors_link: 'https://github.com/gitlabhq/gitlabhq/graphs/contributors'
github_start_commit_data:
start_commit_link: /gitlabhq/gitlabhq/commit/93efff945215a4407afcaf0cba15ac601b56df0d
start_date: '2011-10-08T21:34:49Z'
image_data:
fileName: git-lab.svg
hash: 1GkNkq4eRIDd5CdPT7b66ishOQzqY4eyc8q5xZqRmiI=
best_practice_data:
badge: 42
percentage: 100
twitter_data:
latest_tweet_date: 2019-09-19T23:10:09.000Z
- item:
name: Harness.io
homepage_url: 'https://harness.io'
logo: harness.svg
twitter: 'https://twitter.com/harnessio'
crunchbase: 'https://www.crunchbase.com/organization/harness-512d'
crunchbase_data:
name: Harness
description: Harness is a Continuous Delivery as-a-Service platform for engineering and DevOps teams to release applications into production.
num_employees_min: 101
num_employees_max: 250
homepage: 'http://harness.io/'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/harnessio'
linkedin: 'https://www.linkedin.com/company/18249313'
parents: []
kind: funding
funding: 80000000
image_data:
fileName: harness-io.svg
hash: 3vbjGNT9bi7hueXdJk6V2+2Ix8c/rjtK1hepZmfM5lw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T17:05:00.000Z
- item:
name: JFrog Shippable
homepage_url: 'https://jfrog.com/partner/shippable/'
logo: jfrog.svg
twitter: 'https://twitter.com/beshippable'
crunchbase: 'https://www.crunchbase.com/organization/jfrog-ltd'
crunchbase_data:
name: JFrog
description: JFrog provides software developers with a binary repository management solution.
num_employees_min: 101
num_employees_max: 250
homepage: 'http://www.jfrog.com'
city: Sunnyvale
region: California
country: United States
twitter: 'http://twitter.com/jfrog'
linkedin: 'https://www.linkedin.com/company/455737'
parents: []
kind: funding
funding: 226500000
image_data:
fileName: j-frog-shippable.svg
hash: 0wPdlXgvFgbTDoEX3uv+QpEcMprR2Yup2xZ1djpHWTI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-11T14:34:06.000Z
- item:
name: Armory
homepage_url: 'https://www.armory.io/'
logo: armory.svg
crunchbase: 'https://www.crunchbase.com/organization/armory'
crunchbase_data:
name: Armory
description: 'Armory allows continuous software delivery at enterprise scale to ship better software, faster.'
num_employees_min: 11
num_employees_max: 50
homepage: 'http://www.armory.io/'
city: San Mateo
region: California
country: United States
twitter: 'https://twitter.com/cloudarmory'
linkedin: 'https://www.linkedin.com/company/armory.io/'
parents: []
kind: funding
funding: 42000000
image_data:
fileName: armory.svg
hash: AEW7wFXQc60IbcoEKDaJyvlF4GsgqMjT/nZ1WunBWLI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T11:35:02.000Z
- item:
name: OpsMX
homepage_url: 'https://www.opsmx.com'
logo: opsmx.svg
crunchbase: 'https://www.crunchbase.com/organization/opsmx'
crunchbase_data:
name: OpsMx
description: OpsMx is an venture-backed startup with the goal of accelerating software delivery with machine learning.
num_employees_min: 11
num_employees_max: 50
homepage: 'http://www.opsmx.com'
city: Palo Alto
region: California
country: United States
twitter: 'https://www.twitter.com/ops_mx'
linkedin: null
parents: []
image_data:
fileName: ops-mx.svg
hash: aMFjuoEWvibB4BPZFhtMgL4NvHTgnw3YNIhiIgS/zzI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T23:11:07.000Z
- item:
name: Spinnaker
homepage_url: 'https://www.spinnaker.io/'
repo_url: 'https://github.com/spinnaker/spinnaker'
logo: spinnaker.svg
project: incubating
twitter: 'https://twitter.com/spinnakerio'
crunchbase: 'https://www.crunchbase.com/organization/continuous-delivery-foundation-cdf'
crunchbase_data:
name: Continuous Delivery Foundation (CDF)
description: A Neutral Home for the Next Generation of Continuous Delivery Collaboration
num_employees_min: 1
num_employees_max: 10
homepage: 'https://cd.foundation'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/CDeliveryFdn'
linkedin: null
parents:
- 'https://www.crunchbase.com/organization/linux-foundation'
github_data:
stars: 6498
license: Apache License 2.0
description: 'Spinnaker is an open source, multi-cloud continuous delivery platform for releasing software changes with high velocity and confidence.'
latest_commit_date: '2019-09-18T06:00:00.000Z'
latest_commit_link: /spinnaker/spinnaker/commit/267cf7cf1ccbe23572f90c412495a94a68a85f5d
release_date: '2017-12-19T18:01:54Z'
release_link: 'https://github.com/spinnaker/spinnaker/releases'
contributors_count: 102
contributors_link: 'https://github.com/spinnaker/spinnaker/graphs/contributors'
github_start_commit_data:
start_commit_link: /spinnaker/spinnaker/commit/2b3fac174db42aa7944d6e606a17d5ca1ae66715
start_date: '2014-09-07T09:01:23Z'
image_data:
fileName: spinnaker.svg
hash: Bp8LkKjL0HHB6TljtIJ+vCCOntZ5ukqwxYdjWSH58EE=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-08-14T18:10:22.000Z
- item:
name: Tekton Pipelines
homepage_url: 'https://tekton.dev/'
repo_url: 'https://github.com/tektoncd/pipeline'
logo: tekton.svg
project: incubating
twitter: 'https://twitter.com/tektoncd'
crunchbase: 'https://www.crunchbase.com/organization/continuous-delivery-foundation-cdf'
crunchbase_data:
name: Continuous Delivery Foundation (CDF)
description: A Neutral Home for the Next Generation of Continuous Delivery Collaboration
num_employees_min: 1
num_employees_max: 10
homepage: 'https://cd.foundation'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/CDeliveryFdn'
linkedin: null
parents:
- 'https://www.crunchbase.com/organization/linux-foundation'
github_data:
stars: 3443
license: Apache License 2.0
description: A K8s-native Pipeline resource.
latest_commit_date: '2019-09-20T06:00:00.000Z'
latest_commit_link: /tektoncd/pipeline/commit/c5dfdd873831d123d8c6c2552b4a87101fbb48e1
release_date: '2019-09-19T17:22:39Z'
release_link: 'https://github.com/tektoncd/pipeline/releases'
contributors_count: 86
contributors_link: 'https://github.com/tektoncd/pipeline/graphs/contributors'
github_start_commit_data:
start_commit_link: /tektoncd/pipeline/commit/301b41380e95382a18b391c2165fa3a6a3de93b0
start_date: '2018-08-29T18:21:56Z'
image_data:
fileName: tekton-pipelines.svg
hash: g6L1mfWTs5bsGhAEjaqTqxOaXEVNyHeDp3vm/RkmxKQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-20T15:40:19.000Z
- subcategory:
name: Continuous Integration
items:
- item:
name: Jenkins
homepage_url: 'https://jenkins.io/'
repo_url: 'https://github.com/jenkinsci/jenkins'
logo: jenkins.svg
project: incubating
twitter: 'https://twitter.com/jenkinsci'
crunchbase: 'https://www.crunchbase.com/organization/continuous-delivery-foundation-cdf'
crunchbase_data:
name: Continuous Delivery Foundation (CDF)
description: A Neutral Home for the Next Generation of Continuous Delivery Collaboration
num_employees_min: 1
num_employees_max: 10
homepage: 'https://cd.foundation'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/CDeliveryFdn'
linkedin: null
parents:
- 'https://www.crunchbase.com/organization/linux-foundation'
github_data:
stars: 13878
license: MIT License
description: Jenkins automation server
latest_commit_date: '2019-09-20T06:00:00.000Z'
latest_commit_link: /jenkinsci/jenkins/commit/d763b4cb11067262349554ff178649959d017f56
release_date: '2019-09-16T13:15:10Z'
release_link: 'https://github.com/jenkinsci/jenkins/releases'
contributors_count: 579
contributors_link: 'https://github.com/jenkinsci/jenkins/graphs/contributors'
github_start_commit_data:
start_commit_link: /jenkinsci/jenkins/commit/8a0dc230f44e84e5a7f7920cf9a31f09a54999ac
start_date: '2006-11-05T21:16:01Z'
image_data:
fileName: jenkins.svg
hash: NF6wJqVGQ/KuagjWw5zBa9rK75/gL28x92et53olJF8=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-20T13:32:11.000Z
- item:
name: JenkinsX
homepage_url: 'https://jenkins.io/'
repo_url: 'https://github.com/jenkins-x/jx'
logo: jenkins-x.svg
project: incubating
twitter: 'https://twitter.com/jenkinsxio'
crunchbase: 'https://www.crunchbase.com/organization/continuous-delivery-foundation-cdf'
crunchbase_data:
name: Continuous Delivery Foundation (CDF)
description: A Neutral Home for the Next Generation of Continuous Delivery Collaboration
num_employees_min: 1
num_employees_max: 10
homepage: 'https://cd.foundation'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/CDeliveryFdn'
linkedin: null
parents:
- 'https://www.crunchbase.com/organization/linux-foundation'
github_data:
stars: 3064
license: Apache License 2.0
description: >-
Jenkins X provides automated CI+CD for Kubernetes with Preview Environments on Pull Requests using Jenkins, Tekton, Knative, Prow, Skaffold and
Helm
latest_commit_date: '2019-09-20T06:00:00.000Z'
latest_commit_link: /jenkins-x/jx/commit/d8aa6c185bc4fef865e8e397dd25bacc50e46793
release_date: '2019-09-20T18:11:52Z'
release_link: 'https://github.com/jenkins-x/jx/releases'
contributors_count: 145
contributors_link: 'https://github.com/jenkins-x/jx/graphs/contributors'
github_start_commit_data:
start_commit_link: /jenkins-x/jx/commit/e255f7ea050c4a410a21183ec85a510c8e4ca8c6
start_date: '2018-01-05T15:46:09Z'
image_data:
fileName: jenkins-x.svg
hash: +bDZsdrfz1O+H77iUB0d3eF8S0qLd9y9isM2GpaRlVc=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-20T18:04:02.000Z
- category:
name: Continuous Automation
subcategories:
- subcategory:
name: Test Automation
items:
- item:
name: IBM Rational Functional Tester
homepage_url: 'https://www.ibm.com/cloud'
logo: 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
parents: []
yahoo_finance_data:
market_cap: 134202286080
effective_ticker: IBM
image_data:
fileName: ibm-rational-functional-tester.svg
hash: eZxIibwudBXqy3VKTpiGHKR9vnXpA0wXTm0/gOJDssc=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T13:17:49.000Z
- subcategory:
name: Release Automation
items:
- item:
name: Cloudbees Flow
homepage_url: 'https://www.cloudbees.com/products/cloudbees-flow'
logo: cloudbees.svg
twitter: 'https://twitter.com/CloudBees'
crunchbase: 'https://www.crunchbase.com/organization/cloudbees'
crunchbase_data:
name: CloudBees
description: CloudBees develops an end-to-end automated software delivery system that allows companies to balance governance and developer freedom.
num_employees_min: 501
num_employees_max: 1000
homepage: 'http://www.cloudbees.com'
city: San Jose
region: California
country: United States
twitter: 'http://twitter.com/CloudBees'
linkedin: 'https://www.linkedin.com/company/cloudbees'
parents: []
kind: funding
funding: 121200000
image_data:
fileName: cloudbees-flow.svg
hash: JW/7677Cy+OdGv8ETgXQMjgKtQE57C/FpO9jM+IcDec=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T17:33:35.000Z
- item:
name: IBM UDeploy and URelease
homepage_url: 'https://developer.ibm.com/urbancode/products/urbancode-deploy/'
logo: 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
parents: []
yahoo_finance_data:
market_cap: 134202286080
effective_ticker: IBM
image_data:
fileName: ibm-u-deploy-and-u-release.svg
hash: eZxIibwudBXqy3VKTpiGHKR9vnXpA0wXTm0/gOJDssc=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T13:17:49.000Z
- subcategory:
name: Build Automation
items:
- item:
name: OpenMake Meister
homepage_url: 'https://www.openmakesoftware.com/meister-build-automation/'
logo: openmakesoftware.svg
twitter: 'https://twitter.com/openmake'
crunchbase: 'https://www.crunchbase.com/organization/openmake-software'
crunchbase_data:
name: Openmake Software
description: Openmake Software delivers highly reusable DevOps Solutions delivering innovation in software builds and release.
num_employees_min: null
num_employees_max: null
homepage: 'http://www.openmakesoftware.com'
city: Santa Fe
region: New Mexico
country: United States
twitter: 'http://twitter.com/OpenMake'
linkedin: 'https://www.linkedin.com/company/openmake-software'
parents: []
image_data:
fileName: open-make-meister.svg
hash: Gg2HMslIXJcap8XAYRAEmexnhNAwVjGXYhctt5BSjmk=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-18T18:08:52.000Z
- category:
name: Configuration & Library Management
subcategories:
- subcategory:
name: Configuration Management
items:
- item:
name: DeployHub
homepage_url: 'https://www.deployhub.com/'
logo: deployhub.svg
twitter: 'https://twitter.com/DeployHubProj'
crunchbase: 'https://www.crunchbase.com/organization/deployhub'
crunchbase_data:
name: DeployHub
description: 'DeployHub offers hosted, next generation software deployments for Kubernetes and Agile DevOps teams.'
num_employees_min: 1
num_employees_max: 10
homepage: 'https://www.deployhub.com/'
city: Santa Fe
region: New Mexico
country: United States
twitter: 'https://twitter.com/@deployhubproj'
linkedin: 'https://www.linkedin.com/company/dephub/'
parents: []
image_data:
fileName: deploy-hub.svg
hash: PXtJ13hsKJQUI5NehGlwAabyOP3OR0tbpGqOHJJI7fA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T21:15:13.000Z
- subcategory:
name: Library Management
items:
- item:
name: JFrog Artifactory
homepage_url: 'https://jfrog.com/artifactory/'
logo: jfrog.svg
twitter: 'https://twitter.com/jfrog'
crunchbase: 'https://www.crunchbase.com/organization/jfrog-ltd'
crunchbase_data:
name: JFrog
description: JFrog provides software developers with a binary repository management solution.
num_employees_min: 101
num_employees_max: 250
homepage: 'http://www.jfrog.com'
city: Sunnyvale
region: California
country: United States
twitter: 'http://twitter.com/jfrog'
linkedin: 'https://www.linkedin.com/company/455737'
parents: []
kind: funding
funding: 226500000
image_data:
fileName: j-frog-artifactory.svg
hash: 0wPdlXgvFgbTDoEX3uv+QpEcMprR2Yup2xZ1djpHWTI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T18:37:50.000Z
- 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'
crunchbase_data:
name: Sonatype
description: 'Sonatype helps enterprises get precise intelligence about open source components and accelerate software innovation, quality, and security.'
num_employees_min: 251
num_employees_max: 500
homepage: 'http://sonatype.com'
city: Fulton
region: Maryland
country: United States
twitter: 'http://twitter.com/Sonatype'
linkedin: 'https://www.linkedin.com/company/sonatype'
parents: []
kind: funding
funding: 154707328
image_data:
fileName: sonatype-nexus.svg
hash: sNBjVcEZNpeq/XeD2E8ShVVSEm+HQD3w/d2RQ1R+17g=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T22:09:52.000Z
- 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'
crunchbase_data:
name: WhiteSource
description: WhiteSource empowers businesses to develop better software by harnessing the power of open source.
num_employees_min: 101
num_employees_max: 250
homepage: 'https://www.whitesourcesoftware.com'
city: New York
region: New York
country: United States
twitter: 'https://twitter.com/WhiteSourceSoft'
linkedin: 'https://www.linkedin.com/company/white-source'
parents: []
kind: funding
funding: 46000000
image_data:
fileName: white-source.svg
hash: 7m7UeEp865HIVD/ugiwzfkWk9T4kQh73peKJSkdGsJY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-18T13:00:56.000Z
- category:
name: Infrastructure Deployments
subcategories:
- subcategory:
name: Cloud Native
items:
- item:
name: Alauda
homepage_url: 'http://www.alauda.cn'
logo: alauda.svg
crunchbase: 'https://www.crunchbase.com/organization/alauda'
crunchbase_data:
name: Alauda
description: Alauda is a pioneer cloud platform provider that focuses on containers and microservices.
num_employees_min: 101
num_employees_max: 250
homepage: 'http://www.alauda.cn/'
city: Haidian
region: Beijing
country: China
twitter: null
linkedin: 'https://www.linkedin.com/company/alauda-inc-/'
parents: []
kind: funding
funding: 15000000
image_data:
fileName: alauda.svg
hash: 1e/0J2NoCAPiqz0MpC25HhHaYXIqhCOvWdszMJ2RwZs=
best_practice_data:
badge: false
percentage: null
- item:
name: Alibaba Cloud
homepage_url: 'https://us.alibabacloud.com/'
logo: alibabacloud.svg
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: 1001
num_employees_max: 5000
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'
parents:
- 'https://www.crunchbase.com/organization/alibaba'
ticker: BABA
kind: market_cap
yahoo_finance_data:
market_cap: 474120355840
effective_ticker: BABA
image_data:
fileName: alibaba-cloud.svg
hash: hiTZFxfMBLrvMeBTNTKhwjhlqp7yR+hqht6aq5/8rKM=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-20T09:29:43.000Z
- item:
name: Dell Boomi
homepage_url: 'https://boomi.com/'
logo: dellboomi.svg
crunchbase: 'https://www.crunchbase.com/organization/boomi'
crunchbase_data:
name: Boomi
description: Boomi provides cloud integration solutions via a SaaS-based AtomSphere platform for providers to stay connected with their consumers.
num_employees_min: 1001
num_employees_max: 5000
homepage: 'http://www.boomi.com'
city: Berwyn
region: Pennsylvania
country: United States
twitter: 'http://twitter.com/boomi'
linkedin: 'https://www.linkedin.com/company/boomi-inc-'
parents: []
kind: funding
funding: 4900000
image_data:
fileName: dell-boomi.svg
hash: LeoS5d5Jjl7Z18hgJLczcBKzhLd5nd54eqJ8smw6heY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T16:58:18.000Z
- item:
name: Rancher Labs
homepage_url: 'https://rancher.com'
logo: rancher.svg
crunchbase: 'https://www.crunchbase.com/organization/rancher-labs'
crunchbase_data:
name: Rancher Labs
description: A complete open source container management platform with everything you need to manage containers in production.
num_employees_min: 101
num_employees_max: 250
homepage: 'http://rancher.com/'
city: Cupertino
region: California
country: United States
twitter: 'https://twitter.com/rancher_labs'
linkedin: 'https://www.linkedin.com/company/rancher'
parents: []
kind: funding
funding: 55000000
image_data:
fileName: rancher-labs.svg
hash: Kjo+o0HxVKsp7yuSXrArpDQD/YP3415nByXTf1EQqOA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T21:07:35.000Z
- subcategory:
name: Traditional
items:
- 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'
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: 'https://twitter.com/puppetize'
linkedin: 'https://www.linkedin.com/company/puppet-labs-inc'
parents: []
kind: funding
funding: 149500000
github_data:
stars: 5452
license: Apache License 2.0
description: Server automation framework and application
latest_commit_date: '2019-09-19T06:00:00.000Z'
latest_commit_link: /puppetlabs/puppet/commit/be8b5813df50972591912a866a2a887d8d759bb3
contributors_count: 521
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'
image_data:
fileName: puppet.svg
hash: Znovog0WY2aZOKG1kkABO8naIc12UOXs/ETAizezdiQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T23:08:33.000Z
- category:
name: 'Container Registry, and Image Build'
subcategories:
- subcategory:
name: Container Registry
items:
- 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/'
logo: quay.svg
crunchbase: 'https://www.crunchbase.com/organization/quay-io'
crunchbase_data:
name: quay.io
description: Quay.io is a private hosted docker registry.
num_employees_min: null
num_employees_max: null
homepage: 'https://quay.io/'
city: New York
region: New York
country: United States
twitter: 'http://twitter.com/quayio'
linkedin: null
parents: []
image_data:
fileName: quay.svg
hash: fXwScwHT4zsCjnZXBn2KGOw0u1Vnc3Vdyc6r7SFfgcA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-09T22:20:36.000Z
- item:
name: DockerHub
homepage_url: 'https://hub.docker.com/'
logo: docker-compose.svg
twitter: 'https://twitter.com/moby'
crunchbase: 'https://www.crunchbase.com/organization/docker'
crunchbase_data:
name: Docker
description: 'Docker develops an open platform for building, shipping, and running 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'
parents: []
kind: funding
funding: 272855439
image_data:
fileName: docker-hub.svg
hash: uJVc+ZltcbnXJoTqE6Cg4vttcg9STs9dUbomInT6OYI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-02-12T18:10:37.000Z
- subcategory:
name: Image Build
items:
- item:
name: Ansible
homepage_url: 'https://www.ansible.com/'
repo_url: 'https://github.com/ansible/ansible'
logo: ansible.svg
twitter: 'https://twitter.com/ansible'
crunchbase: 'https://www.crunchbase.com/organization/red-hat'
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
parents: []
github_data:
stars: 39397
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: '2019-09-19T06:00:00.000Z'
latest_commit_link: /ansible/ansible/commit/cee55ab7187df23ffa3c577ab1cbe15334cb38fa
release_date: '2018-02-09T06:51:40Z'
release_link: 'https://github.com/ansible/ansible/releases'
contributors_count: 4646
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'
yahoo_finance_data:
market_cap: 33429835776
effective_ticker: RHT
image_data:
fileName: ansible.svg
hash: XHYuAuMuTK2RwU2sPPE/griyO0uifBKF5Dz1ve/alng=
best_practice_data:
badge: 2372
percentage: 65
twitter_data:
latest_tweet_date: 2019-09-19T18:53:49.000Z
- item:
name: Helm
homepage_url: 'https://helm.sh/'
repo_url: 'https://github.com/helm/helm'
logo: helm.svg
twitter: 'https://twitter.com/helmpack'
crunchbase: 'https://www.crunchbase.com/organization/cloud-native-computing-foundation'
crunchbase_data:
name: Cloud Native Computing Foundation (CNCF)
description: CNCF is an open source software foundation that hosts and nurtures projects like Kubernetes and Prometheus.
num_employees_min: 11
num_employees_max: 50
homepage: 'https://www.cncf.io'
city: San Francisco
region: California
country: United States
twitter: 'https://twitter.com/CloudNativeFdn'
linkedin: 'https://www.linkedin.com/company/cloud-native-computing-foundation'
parents: []
github_data:
stars: 13900
license: Apache License 2.0
description: The Kubernetes Package Manager
latest_commit_date: '2019-09-19T06:00:00.000Z'
latest_commit_link: /helm/helm/commit/7d9a6509fa703185df7388ca1e04b99b11c69253
release_date: '2019-09-05T20:59:50Z'
release_link: 'https://github.com/helm/helm/releases'
contributors_count: 512
contributors_link: 'https://github.com/helm/helm/graphs/contributors'
github_start_commit_data:
start_commit_link: /helm/helm/commit/94db53d0803034083a3a9b1c7a9a197c327eb6b0
start_date: '2015-11-02T23:52:56Z'
image_data:
fileName: helm.svg
hash: KhA6o4K6XUSqkzETQq1dSKGteJ7kc7vebZcpB96Rxww=
best_practice_data:
badge: 3131
percentage: 100
twitter_data:
latest_tweet_date: 2019-09-19T18:49:51.000Z
- category:
name: 'DevSecOps, Analytics and Monitoring'
subcategories:
- subcategory:
name: Container Security
items:
- 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'
crunchbase_data:
name: Anchore
description: 'Discover, analyze, and certify containers on your own terms.'
num_employees_min: 11
num_employees_max: 50
homepage: 'https://anchore.com/'
city: Santa Barbara
region: California
country: United States
twitter: 'https://twitter.com/anchore'
linkedin: 'https://www.linkedin.com/company/anchore'
parents: []
kind: funding
funding: 6000000
github_data:
stars: 644
license: Apache License 2.0
description: >-
A service that analyzes docker images and applies user-defined acceptance policies to allow automated container image validation and
certification
latest_commit_date: '2019-09-16T06:00:00.000Z'
latest_commit_link: /anchore/anchore-engine/commit/bb0faa76425a192e1ac5e451a13a7f4963d1e587
contributors_count: 21
contributors_link: 'https://github.com/anchore/anchore-engine/graphs/contributors'
github_start_commit_data:
start_commit_link: /anchore/anchore-engine/commit/28656b6fee1bbdf3d32b1882136df22ddb6ed564
start_date: '2017-09-06T18:47:21Z'
image_data:
fileName: anchore.svg
hash: FkaKc0KDhCYl3wnBDf+K8To5HZxgshn82YS9RLKntfc=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-09-19T22:15:56.000Z
- item:
name: Snyk
homepage_url: 'https://snyk.io/'
logo: snyk.svg
twitter: 'https://twitter.com/snyksec'
crunchbase: 'https://www.crunchbase.com/organization/snyk'
crunchbase_data: