-
Notifications
You must be signed in to change notification settings - Fork 73
/
processed_landscape.yml
9338 lines (9338 loc) · 371 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: Agola
description: >-
Open Source CI/CD platform with advanced features and architecture. Powerful, reproducible and containerized workflows (called Runs), git based
workflow (integrates with all the primary git repositories like GitHub, GitLab, Gitea), restart Runs from failed tasks, user direct runs (test
your local changes to a remote Agola server with just one command), distributed and high available by design and runs everywhere (Kubernetes,
docker, IaaS, bare metal).
homepage_url: https://agola.io
repo_url: https://github.com/agola-io/agola
logo: agola.svg
crunchbase: https://www.crunchbase.com/organization/sorint-lab
crunchbase_data:
name: Sorint.Lab
description: Sorint.Lab is provider of strategic partner services in the designing, management and development of IT infrastructure.
num_employees_min: 501
num_employees_max: 1000
homepage: https://www.sorint.it
city: Bergamo
region: Lombardia
country: Italy
twitter: https://twitter.com/SorintLab
linkedin: https://www.linkedin.com/company/sorint-lab/
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- DevOps
- Infrastructure
github_data:
languages:
- name: Go
value: 2320700
color: '#00ADD8'
- name: Jsonnet
value: 7415
color: '#0064bd'
- name: Makefile
value: 2126
color: '#427819'
- name: Dockerfile
value: 1131
color: '#384d54'
- name: Shell
value: 496
color: '#89e051'
contributions: 3;3;0;3;6;1;1;7;17;7;2;2;2;0;0;13;14;2;3;7;7;2;0;4;6;1;3;0;7;3;9;2;3;0;4;2;0;0;1;0;0;0;0;0;7;0;0;0;0;0;0;0
firstWeek: 2023-10-22Z
stars: 1502
license: Apache License 2.0
description: 'Agola: CI/CD Redefined'
latest_commit_date: '2024-08-22T07:39:45Z'
latest_commit_link: /agola-io/agola/commit/ba6c38cfe5fa5f075c6326dba69318fe2861cfb0
release_date: '2024-05-20T14:32:55Z'
release_link: https://github.com/agola-io/agola/releases
contributors_count: 14
contributors_link: https://github.com/agola-io/agola/graphs/contributors
repos:
- url: https://github.com/agola-io/agola
stars: 1502
github_start_commit_data:
start_commit_link: /agola-io/agola/commit/686d7abedbcdf82fd78803160204c5ef5a179572
start_date: '2019-02-21T14:56:50Z'
image_data:
fileName: agola.svg
hash: oqURlE69B+6VQIT359vl/U0eRWQUuwE7PhoWk2WE8Q4=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-03-01T09:05:55.000Z
- item:
name: Argo
homepage_url: https://argoproj.github.io/
repo_url: https://github.com/argoproj/argo-workflows
logo: argo.svg
twitter: https://twitter.com/argoproj
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
acquisitions:
- date: '2016-03-10'
acquiree: Kubernetes
- date: '2017-02-06'
acquiree: RethinkDB
parents:
- https://www.crunchbase.com/organization/linux-foundation
funding: 3000000
stockExchange: null
company_type: Non Profit
industries:
- Cloud Computing
- Cloud Infrastructure
- Non Profit
- Open Source
- Software
kind: funding
github_data:
languages:
- name: Go
value: 4230021
color: '#00ADD8'
- name: TypeScript
value: 645759
color: '#2b7489'
- name: Nix
value: 111103
color: '#7e7eff'
- name: Makefile
value: 39763
color: '#427819'
- name: SCSS
value: 31886
- name: Shell
value: 16715
color: '#89e051'
- name: JavaScript
value: 4248
color: '#f1e05a'
- name: Dockerfile
value: 3977
color: '#384d54'
- name: Python
value: 3639
color: '#3572A5'
- name: Java
value: 2559
color: '#b07219'
- name: HTML
value: 472
color: '#e34c26'
contributions: 34;12;14;15;18;28;19;24;18;12;13;26;24;11;5;12;17;15;9;6;8;7;15;10;22;13;9;12;5;13;11;9;8;10;12;6;9;9;13;13;16;7;7;22;6;13;8;14;16;15;8;22
firstWeek: 2023-10-22Z
stars: 14960
license: Apache License 2.0
description: Workflow Engine for Kubernetes
latest_commit_date: '2024-10-15T20:21:19Z'
latest_commit_link: /argoproj/argo-workflows/commit/d05cf6459cdd956cb621a6552f009e21db0a3789
release_date: '2024-10-03T07:48:59Z'
release_link: https://github.com/argoproj/argo-workflows/releases
contributors_count: 915
contributors_link: https://github.com/argoproj/argo-workflows/graphs/contributors
repos:
- url: https://github.com/argoproj/argo-workflows
stars: 14960
github_start_commit_data:
start_commit_link: /argoproj/argo-workflows/commit/3ed1dfeb073829d3c4f92b95c9a74118caaec1b4
start_date: '2017-10-17T21:38:48Z'
image_data:
fileName: argo.svg
hash: Xb4OvEH8Blm9GmWInFZZnx2Q0rUDurtM1rkRrRtlJEc=
best_practice_data:
badge: 3830
percentage: 100
twitter_data:
latest_tweet_date: 2023-04-20T11:32:38.000Z
- item:
name: Armory Enterprise
homepage_url: https://www.armory.io/armory-enterprise-spinnaker/
logo: armory.svg
crunchbase: https://www.crunchbase.com/organization/armory
crunchbase_data:
name: Armory
description: Armory is an enterprise software company commercializing the open-source continuous delivery platform, Spinnaker.
num_employees_min: 101
num_employees_max: 250
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
acquisitions: []
parents: []
funding: 82000000
stockExchange: null
company_type: For Profit
industries:
- Cloud Computing
- Cloud Infrastructure
- Enterprise Applications
- Enterprise Software
- Information Technology
- Internet
- SaaS
- Software
kind: funding
image_data:
fileName: armory-enterprise.svg
hash: H5lt5bukuvWLjC2hpjRnh3PqMLzSjUSEFYzH6mCoct0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T18:41:00.000Z
- item:
name: Cartographer
description: Cartographer is a Kubernetes-native Choreographer providing higher modularity and scalability for the software supply chain.
homepage_url: https://cartographer.sh/
repo_url: https://github.com/vmware-tanzu/cartographer
logo: cartographer.svg
twitter: https://twitter.com/OssCartographer
crunchbase: https://www.crunchbase.com/organization/vmware
crunchbase_data:
name: VMware
description: VMware is a cloud services company that provides cloud infrastructure, cloud management, security, and networking.
num_employees_min: 10001
num_employees_max: 1000000
homepage: https://www.vmware.com
city: Palo Alto
region: California
country: United States
twitter: http://twitter.com/VMware
linkedin: https://www.linkedin.com/company/vmware
acquisitions:
- date: '2003-12-16'
acquiree: Emic Networks
- date: '2006-06-18'
acquiree: Akimbi Systems
- date: '2007-08-06'
acquiree: Determina
- date: '2007-09-11'
acquiree: Dunes Technologies
- date: '2008-01-15'
acquiree: Thinstall inc
- date: '2008-05-28'
acquiree: B-hive Networks
- date: '2008-11-30'
acquiree: Blue Lane Technologies
- date: '2009-08-10'
acquiree: Spring
- date: '2010-08-31'
acquiree: Integrien
- date: '2010-08-31'
acquiree: TriCipher
- date: '2011-01-18'
acquiree: NeoAccel
- date: '2011-03-08'
acquiree: WaveMaker
- date: '2011-04-26'
acquiree: SlideRocket
- date: '2011-05-16'
acquiree: Shavlik Technologies
- date: '2011-05-31'
acquiree: Socialcast
- date: '2011-06-13'
acquiree: Digital Fuel
- date: '2011-08-01'
acquiree: Packetmotion
- date: '2012-05-22'
acquiree: Wanova
- date: '2012-07-02'
acquiree: DynamicOps
- date: '2012-07-23'
acquiree: Nicira Networks
- date: '2013-02-11'
acquiree: Virsto Software
- date: '2013-10-15'
acquiree: Desktone
- date: '2014-01-22'
acquiree: AirWatch
- date: '2014-08-20'
acquiree: CloudVolumes
- date: '2015-02-02'
acquiree: MomentumSI
- date: '2015-02-03'
acquiree: Immidio
- date: '2015-10-14'
acquiree: Boxer
- date: '2016-06-13'
acquiree: Arkin
- date: '2016-12-20'
acquiree: PLUMgrid
- date: '2017-04-12'
acquiree: Wavefront
- date: '2017-05-15'
acquiree: Apteligent
- date: '2017-11-02'
acquiree: VeloCloud
- date: '2018-02-14'
acquiree: CloudCoreo
- date: '2018-02-22'
acquiree: CloudVelox
- date: '2018-03-28'
acquiree: E8 Security
- date: '2018-05-01'
acquiree: Bracket Computing
- date: '2018-08-27'
acquiree: CloudHealth Technologies
- date: '2018-11-06'
acquiree: Heptio
- date: '2019-02-05'
acquiree: AetherPal
- date: '2019-05-15'
acquiree: VMware/ Bitnami
- date: '2019-06-14'
acquiree: Avi Networks
- date: '2019-07-18'
acquiree: Bitfusion.io
- date: '2019-07-25'
acquiree: Uhana
- date: '2019-08-16'
acquiree: Veriflow
- date: '2019-08-20'
acquiree: Intrinsic
- date: '2019-08-22'
acquiree: Pivotal
- date: '2019-10-08'
acquiree: Carbon Black
- date: '2020-01-21'
acquiree: Nyansa
- date: '2020-05-13'
acquiree: Octarine
- date: '2020-06-04'
acquiree: Lastline
- date: '2020-07-02'
acquiree: Datrium
- date: '2020-09-29'
acquiree: SaltStack
- date: '2021-03-18'
acquiree: Mesh7
- date: '2022-11-08'
acquiree: Ananda Networks
parents:
- https://www.crunchbase.com/organization/dell-technologies
ticker: DELL
funding: 393500000
stockExchange: nyse
company_type: For Profit
industries: []
github_data:
languages:
- name: Go
value: 1410366
color: '#00ADD8'
- name: Shell
value: 49992
color: '#89e051'
- name: Makefile
value: 6494
color: '#427819'
- name: Dockerfile
value: 1928
color: '#384d54'
- name: Python
value: 812
color: '#3572A5'
contributions: 2;1;1;0;0;0;0;0;6;1;2;0;1;3;2;0;2;0;0;0;0;3;1;0;0;0;1;0;0;1;0;1;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2023-10-22Z
stars: 447
license: Apache License 2.0
description: Cartographer is a Supply Chain Choreographer.
latest_commit_date: '2024-06-10T01:03:46Z'
latest_commit_link: /vmware-tanzu/cartographer/commit/db183fc31dd4aed345503482ed60bf0a204685a7
release_date: '2023-10-30T16:28:41Z'
release_link: https://github.com/vmware-tanzu/cartographer/releases
contributors_count: 31
contributors_link: https://github.com/vmware-tanzu/cartographer/graphs/contributors
repos:
- url: https://github.com/vmware-tanzu/cartographer
stars: 447
github_start_commit_data:
start_commit_link: /vmware-tanzu/cartographer/commit/5027e6bb30643a84231099b7aeae429f2a2eed62
start_date: '2021-09-01T15:32:51Z'
yahoo_finance_data:
effective_ticker: DELL
image_data:
fileName: cartographer.svg
hash: AyBma/n0NnMNQdf6RItGKqJSb+IdVa0Vrz2lDV4TWNE=
best_practice_data:
badge: 5329
percentage: 100
twitter_data:
latest_tweet_date: 2022-12-19T14:29:46.000Z
- item:
name: CircleCI
homepage_url: https://circleci.com/
logo: circleci.svg
crunchbase: https://www.crunchbase.com/organization/circle-ci
crunchbase_data:
name: CircleCI
description: CircleCI is a continuous integration and delivery platform that automates development workflows and IT operations.
num_employees_min: 501
num_employees_max: 1000
homepage: https://circleci.com
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/circleci
linkedin: https://www.linkedin.com/company/circleci
acquisitions:
- date: '2014-12-17'
acquiree: Distiller
- date: '2021-05-11'
acquiree: Vamp.io
- date: '2022-03-09'
acquiree: Ponicode
parents: []
funding: 315000000
stockExchange: null
company_type: For Profit
industries:
- Delivery
- Delivery Service
- Developer Tools
- PaaS
- Productivity Tools
- SaaS
- Software
kind: funding
image_data:
fileName: circle-ci.svg
hash: H8lvsFywp6u/aOf00kg+1DcsgfR/Z7ysVabFkNfNMto=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T20:35:01.000Z
- item:
name: Cloudbees
homepage_url: https://www.cloudbees.com/
logo: cloudbees.svg
crunchbase: https://www.crunchbase.com/organization/cloudbees
crunchbase_data:
name: CloudBees
description: CloudBees develops a cloud-based platform that provides end-to-end automated software delivery.
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
acquisitions:
- date: '2010-11-09'
acquiree: InfraDNA
- date: '2010-12-14'
acquiree: Stax Networks
- date: '2013-07-24'
acquiree: FoxWeave
- date: '2018-02-06'
acquiree: Codeship
- date: '2019-04-18'
acquiree: Electric Cloud
- date: '2019-06-11'
acquiree: Rollout.io
- date: '2022-09-28'
acquiree: Releaseiq
- date: '2024-08-07'
acquiree: Launchable
parents: []
funding: 356200000
stockExchange: null
company_type: For Profit
industries:
- Business Development
- Cloud Computing
- Cloud Data Services
- Delivery
- DevOps
- SaaS
kind: funding
image_data:
fileName: cloudbees.svg
hash: wSR90ke3n8/j/9kQ8PLRFOz7hOz85O/4XeGwxqZDbZU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T19:01:01.000Z
- item:
name: Codefresh
description: >-
Codefresh Argo Platform is built on an open core of Argo Workflows, Argo CD, Argo Events, and Argo Rollouts to create a seamless DevOps
experience. Provision and manage Argo instances for workflows and deployments across clusters, locations, and clouds. Built on open source to
provide unparralleld insights into the DevOps process. Track a deployment back to the commit, committer, Jira ticket, pull requests and more.
Scalable, Secure, and fully-supported.
homepage_url: https://codefresh.io
repo_url: https://github.com/codefresh-io/docs.codefresh.io
logo: codefresh.svg
crunchbase: https://www.crunchbase.com/organization/code-fresh
crunchbase_data:
name: Codefresh
description: Codefresh is a trusted platform for cloud-native apps.
num_employees_min: 51
num_employees_max: 100
homepage: https://www.codefresh.io/
city: Mountain View
region: California
country: United States
twitter: https://twitter.com/codefresh
linkedin: https://www.linkedin.com/company/codefresh
acquisitions: []
parents: []
funding: 46500000
stockExchange: null
company_type: For Profit
industries:
- Apps
- DevOps
- Developer Tools
- Software
- Web Development
kind: funding
github_data:
languages:
- name: SCSS
value: 54941
- name: HTML
value: 46997
color: '#e34c26'
- name: CSS
value: 15962
color: '#563d7c'
- name: Twig
value: 13953
- name: JavaScript
value: 11491
color: '#f1e05a'
- name: Shell
value: 567
color: '#89e051'
- name: Dockerfile
value: 434
color: '#384d54'
- name: Ruby
value: 377
color: '#701516'
contributions: 5;2;3;3;8;7;11;5;14;48;9;5;7;13;14;8;2;1;7;12;6;1;3;15;8;3;1;1;7;4;1;7;6;2;8;0;7;4;4;12;5;11;7;8;6;1;5;9;3;7;2;2
firstWeek: 2023-10-22Z
stars: 21
license: MIT License
description: Source for Codefresh documentation
latest_commit_date: '2024-10-13T05:37:18Z'
latest_commit_link: /codefresh-io/docs.codefresh.io/commit/31e1ca2df17bc29c174ca14dd0f0602d53ab2acc
contributors_count: 91
contributors_link: https://github.com/codefresh-io/docs.codefresh.io/graphs/contributors
repos:
- url: https://github.com/codefresh-io/docs.codefresh.io
stars: 21
github_start_commit_data:
start_commit_link: /codefresh-io/docs.codefresh.io/commit/a9d83bc3d2c869b42156e0a0da75265f34bea536
start_date: '2018-02-12T14:04:22Z'
image_data:
fileName: codefresh.svg
hash: 3N7an9XAPzJzYJF9B4BtEEPdg0mFR+y5x9HeJX7Pvak=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-20T22:46:29.000Z
- item:
name: Concourse
homepage_url: https://concourse-ci.org/
repo_url: https://github.com/concourse/concourse
logo: concourse.svg
twitter: https://twitter.com/concourseci
crunchbase: https://www.crunchbase.com/organization/vmware
crunchbase_data:
name: VMware
description: VMware is a cloud services company that provides cloud infrastructure, cloud management, security, and networking.
num_employees_min: 10001
num_employees_max: 1000000
homepage: https://www.vmware.com
city: Palo Alto
region: California
country: United States
twitter: http://twitter.com/VMware
linkedin: https://www.linkedin.com/company/vmware
acquisitions:
- date: '2003-12-16'
acquiree: Emic Networks
- date: '2006-06-18'
acquiree: Akimbi Systems
- date: '2007-08-06'
acquiree: Determina
- date: '2007-09-11'
acquiree: Dunes Technologies
- date: '2008-01-15'
acquiree: Thinstall inc
- date: '2008-05-28'
acquiree: B-hive Networks
- date: '2008-11-30'
acquiree: Blue Lane Technologies
- date: '2009-08-10'
acquiree: Spring
- date: '2010-08-31'
acquiree: Integrien
- date: '2010-08-31'
acquiree: TriCipher
- date: '2011-01-18'
acquiree: NeoAccel
- date: '2011-03-08'
acquiree: WaveMaker
- date: '2011-04-26'
acquiree: SlideRocket
- date: '2011-05-16'
acquiree: Shavlik Technologies
- date: '2011-05-31'
acquiree: Socialcast
- date: '2011-06-13'
acquiree: Digital Fuel
- date: '2011-08-01'
acquiree: Packetmotion
- date: '2012-05-22'
acquiree: Wanova
- date: '2012-07-02'
acquiree: DynamicOps
- date: '2012-07-23'
acquiree: Nicira Networks
- date: '2013-02-11'
acquiree: Virsto Software
- date: '2013-10-15'
acquiree: Desktone
- date: '2014-01-22'
acquiree: AirWatch
- date: '2014-08-20'
acquiree: CloudVolumes
- date: '2015-02-02'
acquiree: MomentumSI
- date: '2015-02-03'
acquiree: Immidio
- date: '2015-10-14'
acquiree: Boxer
- date: '2016-06-13'
acquiree: Arkin
- date: '2016-12-20'
acquiree: PLUMgrid
- date: '2017-04-12'
acquiree: Wavefront
- date: '2017-05-15'
acquiree: Apteligent
- date: '2017-11-02'
acquiree: VeloCloud
- date: '2018-02-14'
acquiree: CloudCoreo
- date: '2018-02-22'
acquiree: CloudVelox
- date: '2018-03-28'
acquiree: E8 Security
- date: '2018-05-01'
acquiree: Bracket Computing
- date: '2018-08-27'
acquiree: CloudHealth Technologies
- date: '2018-11-06'
acquiree: Heptio
- date: '2019-02-05'
acquiree: AetherPal
- date: '2019-05-15'
acquiree: VMware/ Bitnami
- date: '2019-06-14'
acquiree: Avi Networks
- date: '2019-07-18'
acquiree: Bitfusion.io
- date: '2019-07-25'
acquiree: Uhana
- date: '2019-08-16'
acquiree: Veriflow
- date: '2019-08-20'
acquiree: Intrinsic
- date: '2019-08-22'
acquiree: Pivotal
- date: '2019-10-08'
acquiree: Carbon Black
- date: '2020-01-21'
acquiree: Nyansa
- date: '2020-05-13'
acquiree: Octarine
- date: '2020-06-04'
acquiree: Lastline
- date: '2020-07-02'
acquiree: Datrium
- date: '2020-09-29'
acquiree: SaltStack
- date: '2021-03-18'
acquiree: Mesh7
- date: '2022-11-08'
acquiree: Ananda Networks
parents:
- https://www.crunchbase.com/organization/dell-technologies
ticker: DELL
funding: 393500000
stockExchange: nyse
company_type: For Profit
industries: []
github_data:
languages:
- name: Go
value: 7216881
color: '#00ADD8'
- name: Elm
value: 2301248
color: '#60B5CC'
- name: JavaScript
value: 76565
color: '#f1e05a'
- name: Less
value: 34575
- name: PLpgSQL
value: 9405
- name: HTML
value: 9052
color: '#e34c26'
- name: Shell
value: 8139
color: '#89e051'
- name: CSS
value: 3808
color: '#563d7c'
- name: Dockerfile
value: 2434
color: '#384d54'
- name: C
value: 992
color: '#555555'
- name: Open Policy Agent
value: 534
- name: HCL
value: 256
- name: Makefile
value: 133
color: '#427819'
contributions: 3;1;0;0;1;0;1;1;3;0;16;9;2;8;1;7;0;1;8;4;2;0;2;6;6;0;6;3;3;0;0;0;2;0;6;1;2;8;1;2;0;0;0;2;0;0;0;0;0;0;0;0
firstWeek: 2023-10-22Z
stars: 7407
license: Apache License 2.0
description: Concourse is a container-based continuous thing-doer written in Go.
latest_commit_date: '2024-08-18T19:53:50Z'
latest_commit_link: /concourse/concourse/commit/62d9c6786619ec049f94c26eb0d60b24a5685eec
release_date: '2024-02-08T03:31:57Z'
release_link: https://github.com/concourse/concourse/releases
contributors_count: 548
contributors_link: https://github.com/concourse/concourse/graphs/contributors
repos:
- url: https://github.com/concourse/concourse
stars: 7407
github_start_commit_data:
start_commit_link: /concourse/concourse/commit/e3cb2182bb1523718f65714d0c20e176572726a9
start_date: '2014-04-14T00:11:04Z'
yahoo_finance_data:
effective_ticker: DELL
image_data:
fileName: concourse.svg
hash: U4Rjv+N+p79aFDboUV+wBKnBlDwV8ASZs0Md/QiZFnI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-03-16T16:20:02.000Z
- item:
name: Flagger
homepage_url: https://docs.flagger.app
repo_url: https://github.com/fluxcd/flagger
logo: flagger.svg
twitter: https://twitter.com/fluxcd
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
acquisitions:
- date: '2016-03-10'
acquiree: Kubernetes
- date: '2017-02-06'
acquiree: RethinkDB
parents:
- https://www.crunchbase.com/organization/linux-foundation
funding: 3000000
stockExchange: null
company_type: Non Profit
industries:
- Cloud Computing
- Cloud Infrastructure
- Non Profit
- Open Source
- Software
kind: funding
github_data:
languages:
- name: Go
value: 1504862
color: '#00ADD8'
- name: Shell
value: 133201
color: '#89e051'
- name: Mustache
value: 3313
- name: Makefile
value: 1624
color: '#427819'
- name: Smarty
value: 1318
- name: Dockerfile
value: 553
color: '#384d54'
contributions: 0;2;0;0;4;5;10;0;3;1;2;4;0;3;1;3;14;2;0;10;6;3;13;0;1;2;0;2;2;0;0;8;6;0;2;1;1;1;3;6;8;0;0;0;0;0;0;0;0;0;2;0
firstWeek: 2023-10-22Z
stars: 4874
license: Apache License 2.0
description: Progressive delivery Kubernetes operator (Canary, A/B Testing and Blue/Green deployments)
latest_commit_date: '2024-10-07T20:49:57Z'
latest_commit_link: /fluxcd/flagger/commit/a1594212909513c7a81340ffb181a7cbd1260b9f
release_date: '2024-07-30T13:43:09Z'
release_link: https://github.com/fluxcd/flagger/releases
contributors_count: 218
contributors_link: https://github.com/fluxcd/flagger/graphs/contributors
repos:
- url: https://github.com/fluxcd/flagger
stars: 4874
github_start_commit_data:
start_commit_link: /fluxcd/flagger/commit/c1ef44a9b9433dfd44c01d399ea798bba5cd419b
start_date: '2018-09-19T21:43:47Z'
image_data:
fileName: flagger.svg
hash: pEoxqEC/5N5RApWlkXKTaSqE+cDgX/CnOVrSXWAhWww=
best_practice_data:
badge: 4783
percentage: 100
twitter_data:
latest_tweet_date: 2023-04-21T10:23:00.000Z
- item:
name: Flux
homepage_url: https://fluxcd.io/
repo_url: https://github.com/fluxcd/flux2
logo: flux.svg
twitter: https://twitter.com/fluxcd
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
acquisitions:
- date: '2016-03-10'
acquiree: Kubernetes
- date: '2017-02-06'
acquiree: RethinkDB
parents:
- https://www.crunchbase.com/organization/linux-foundation
funding: 3000000
stockExchange: null
company_type: Non Profit
industries:
- Cloud Computing
- Cloud Infrastructure
- Non Profit
- Open Source
- Software
kind: funding
github_data:
languages:
- name: Go
value: 1049396
color: '#00ADD8'
- name: HCL
value: 9334
- name: Shell
value: 7615
color: '#89e051'
- name: Makefile
value: 4535
color: '#427819'
- name: Dockerfile
value: 540
color: '#384d54'
contributions: 5;9;12;3;5;3;3;35;27;0;0;6;3;11;5;6;0;2;4;0;4;5;4;1;12;6;15;6;27;29;0;0;0;4;6;0;3;2;0;2;0;0;5;8;5;4;4;1;0;20;0;0
firstWeek: 2023-10-22Z
stars: 6458
license: Apache License 2.0
description: Open and extensible continuous delivery solution for Kubernetes. Powered by GitOps Toolkit.
latest_commit_date: '2024-09-30T09:29:31Z'
latest_commit_link: /fluxcd/flux2/commit/5350425cdcd5fa015337e09fa502153c0275bd4b
release_date: '2024-09-30T16:48:43Z'
release_link: https://github.com/fluxcd/flux2/releases
contributors_count: 164
contributors_link: https://github.com/fluxcd/flux2/graphs/contributors
repos:
- url: https://github.com/fluxcd/flux2
stars: 6458
github_start_commit_data:
start_commit_link: /fluxcd/flux2/commit/ebdabaf98d8c94092dadcf88a959795d4e06b651
start_date: '2020-04-24T09:38:22Z'
image_data:
fileName: flux.svg
hash: h7GovC0iLE2tsMuXuZcw68F0M5/FzvhCVNGxMCC04bw=
best_practice_data:
badge: 4782
percentage: 100
twitter_data:
latest_tweet_date: 2023-04-21T10:23:00.000Z
- item:
name: GitHub Actions
description: >-
GitHub Actions makes it easy to automate all your software workflows, now with world-class CI/CD. Build, test, and deploy your code right from
GitHub. Make code reviews, branch management, and issue triaging work the way you want.
homepage_url: https://github.com/features/actions
logo: github-actions.svg
crunchbase: https://www.crunchbase.com/organization/github
crunchbase_data:
name: GitHub
description: GitHub is a software company that offers code hosting services that allow developers to build software for open-source and private projects.
num_employees_min: 1001
num_employees_max: 5000
homepage: https://github.com
city: San Francisco
region: California
country: United States
twitter: http://www.twitter.com/github
linkedin: https://www.linkedin.com/company/github
acquisitions:
- date: '2011-12-05'
acquiree: Ordered List
- date: '2014-01-09'
acquiree: Easel
- date: '2018-11-30'
acquiree: Spectrum
- date: '2019-05-23'
acquiree: Dependabot
- date: '2019-06-17'
acquiree: Pull Panda
- date: '2019-09-18'
acquiree: Semmle
- date: '2019-12-01'
acquiree: Gitalytics
- date: '2020-03-16'
acquiree: npm
parents:
- https://www.crunchbase.com/organization/microsoft
ticker: MSFT
funding: 350000000
stockExchange: null
company_type: For Profit
industries:
- Cloud Computing
- Developer Tools
- Internet
- Project Management
- Software
yahoo_finance_data:
effective_ticker: MSFT
image_data:
fileName: git-hub-actions.svg
hash: U/jEsKUWTOxCBkdzD+DGIe1bun3rF3ru7Re9kIwvz94=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-21T02:10:06.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
crunchbase: https://www.crunchbase.com/organization/gitlab-com
crunchbase_data:
name: GitLab
description: GitLab is a web-based Git repository manager that offers a variety of features for software development teams.
num_employees_min: 1001
num_employees_max: 5000
homepage: http://about.gitlab.com
city: San Francisco
region: California
country: United States
twitter: http://www.twitter.com/gitlab
linkedin: https://www.linkedin.com/company/gitlab-com
acquisitions:
- date: '2015-03-03'
acquiree: Gitorious