-
Notifications
You must be signed in to change notification settings - Fork 133
/
repo-index.yml
2047 lines (2046 loc) · 94.4 KB
/
repo-index.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
plugins:
- authors:
- contact: [email protected]
homepage: https://github.com/odlp
name: Oliver Peate
binaries:
- checksum: 68e8e06ad853488b681e9c538a889596fcf2b3a2
platform: osx
url: https://github.com/odlp/antifreeze/releases/download/v0.3.0/antifreeze-darwin
- checksum: 2b58d45d936e5a4a6eb6e134913c3c335478cdc4
platform: win64
url: https://github.com/odlp/antifreeze/releases/download/v0.3.0/antifreeze.exe
- checksum: dd63f82673592cd15a048606f4f7bd9ee11254f4
platform: linux64
url: https://github.com/odlp/antifreeze/releases/download/v0.3.0/antifreeze-linux
company: null
created: "2016-04-23T00:00:00Z"
description: Detect if an app has unexpected ENV vars or services bound which are
missing from the manifest
homepage: https://github.com/odlp/antifreeze
name: antifreeze
updated: "2016-05-20T00:00:00Z"
version: 0.3.0
- authors:
- contact: [email protected]
homepage: https://github.com/apigee/cloud-foundry-apigee
name: Apigee Cloud Foundry Team
binaries:
- checksum: 8cd4ce2e452805233d98da3b51fe321567582f49
platform: osx
url: https://github.com/apigee/cloud-foundry-apigee/raw/v3.0.0-Beta/cli_plugin/releases/download/v0.1.1/apigee-broker-plugin.osx
- checksum: 582bdd5fe54b0a79c8017e3aebe8eb5b57395288
platform: win64
url: https://github.com/apigee/cloud-foundry-apigee/raw/v3.0.0-Beta/cli_plugin/releases/download/v0.1.1/apigee-broker-plugin.win64
- checksum: 4b1b6ceb4218a1653646fc28a741df9f15828585
platform: linux64
url: https://github.com/apigee/cloud-foundry-apigee/raw/v3.0.0-Beta/cli_plugin/releases/download/v0.1.1/apigee-broker-plugin.linux64
company: Google
created: "2017-11-30T00:00:00Z"
description: Allows users to interact with the Apigee Service Broker in an easier
and more streamlined way
homepage: https://github.com/apigee/cloud-foundry-apigee/tree/v3.0.0-Beta/cli_plugin
name: apigee-broker-plugin
updated: "2017-11-30T00:00:00Z"
version: 0.1.1
- authors:
- homepage: https://github.com/orgs/cloudfoundry/teams/wg-app-runtime-interfaces-autoscaler-approvers
name: WG App Runtime Interfaces Autoscaler Approvers
binaries:
- checksum: ad9103529040feccf86aff84d2e9d5a5ff0970bb
platform: osx
url: https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/download/v4.0.1/ascli-darwin-amd64-4.0.1-release+0
- checksum: c95b046c035ecfbba7af32899de9995944034072
platform: linux64
url: https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/download/v4.0.1/ascli-linux-amd64-4.0.1-release+0
- checksum: fe45bef207a10c892bf1a94942537f864ff230d9
platform: win64
url: https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/download/v4.0.1/ascli-windows-amd64-4.0.1-release+0.exe
company: Cloud Foundry Foundation
created: "2018-04-17T00:00:00Z"
description: App-AutoScaler plug-in provides the command line interface to manage
App AutoScaler service policies, retrieve metrics and scaling history.
homepage: https://github.com/cloudfoundry/app-autoscaler-cli-plugin
name: app-autoscaler-plugin
updated: "2024-08-30T15:29:00Z"
version: 4.0.1
- authors:
- contact: [email protected]
homepage: https://github.com/wfernandes
name: Warren Fernandes
binaries:
- checksum: 24568ddaadaffb763d1a884dfa68b11b91254ac2
platform: osx
url: https://github.com/wfernandes/app-metrics-plugin/releases/download/2.0.0/app-metrics-plugin-darwin
- checksum: 393b32214e6738e9cb15d3191bc11041d0a01dbd
platform: win64
url: https://github.com/wfernandes/app-metrics-plugin/releases/download/2.0.0/app-metrics-plugin.exe
- checksum: a771ac482c266928277fa1ce42941104c45571df
platform: linux64
url: https://github.com/wfernandes/app-metrics-plugin/releases/download/2.0.0/app-metrics-plugin-linux
company: null
created: "2017-11-24T00:00:00Z"
description: This plugin allows you to hit a metrics endpoint across all your app
instances
homepage: http://github.com/wfernandes/app-metrics-plugin
name: app-metrics
updated: "2018-03-16T19:18:15Z"
version: 2.0.0
- authors:
- name: CF Dedicated MySQL
binaries:
- checksum: 5bc4ce6618cd690a8b50e94c4a928a27aee73f9a
platform: osx
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.7.0/adbr-plugin-darwin-amd64
- checksum: 7e74280f3de84c8b4b1989ae6b316d1ac3c8761d
platform: osx
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.7.0/adbr-plugin-darwin-arm64
- checksum: acdfb36c8d6780782e378c62170ed8e86dfd6798
platform: linux32
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.7.0/adbr-plugin-linux-386
- checksum: c498f793e63c7950dc5381a8a311be9be4c86304
platform: linux64
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.7.0/adbr-plugin-linux-amd64
- checksum: 5653c4c283392259e342ba4290d35f1566783bc8
platform: win32
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.7.0/adbr-plugin-windows-386.exe
- checksum: dc46ee1560bb1fff51b4c7d1533aa81494ef3cc6
platform: win64
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.7.0/adbr-plugin-windows-amd64.exe
company: VMware
created: "2020-08-11T00:00:00Z"
description: Tool to backup/restore Tanzu MySQL service instances
homepage: https://docs.vmware.com/en/VMware-SQL-with-MySQL-for-Tanzu-Application-Service/index.html
name: ApplicationDataBackupRestore
updated: "2024-05-13T22:52:32Z"
version: 0.7.0
- authors:
- name: Christopher Brown
binaries:
- checksum: 3add658dae22d0dd07f186e45a502883d03e7d03
platform: osx
url: https://github.com/contraband/autopilot/releases/download/0.0.6/autopilot-darwin
- checksum: 9b818046c193ba969c95d4572c3d4ae581b38a78
platform: win64
url: https://github.com/contraband/autopilot/releases/download/0.0.6/autopilot.exe
- checksum: 4e872af41552aff036d13f453a2b137bf387e2ed
platform: linux64
url: https://github.com/contraband/autopilot/releases/download/0.0.6/autopilot-linux
company: Concourse
created: "2015-03-01T00:00:00Z"
description: zero downtime deploy plugin for cf applications
homepage: https://github.com/contraband/autopilot
name: autopilot
updated: "2018-02-02T00:00:00Z"
version: 0.0.6
- authors:
- contact: [email protected]
homepage: https://github.com/ArthurHlt
name: Arthur Halet
binaries:
- checksum: 18dde30f72db92e89489ef13a28e1f38ab2f327c
platform: osx
url: https://github.com/orange-cloudfoundry/cf-plugin-bg-restage/releases/download/v1.1.0/cf-plugin-bg-restage_darwin_amd64
- checksum: cd11decb520770d7d2cda36fab6e19334b3eed29
platform: win64
url: https://github.com/orange-cloudfoundry/cf-plugin-bg-restage/releases/download/v1.1.0/cf-plugin-bg-restage_windows_amd64.exe
- checksum: 67c0a53cf39e1c9f117eea5043f19c6368dda229
platform: win32
url: https://github.com/orange-cloudfoundry/cf-plugin-bg-restage/releases/download/v1.1.0/cf-plugin-bg-restage_windows_386.exe
- checksum: 69e56337ff208f94287af7e2394fcd1878b26408
platform: linux64
url: https://github.com/orange-cloudfoundry/cf-plugin-bg-restage/releases/download/v1.1.0/cf-plugin-bg-restage_linux_amd64
- checksum: c8659b38bf74b755e5281fc36b77d0e26e39469e
platform: linux32
url: https://github.com/orange-cloudfoundry/cf-plugin-bg-restage/releases/download/v1.1.0/cf-plugin-bg-restage_linux_386
company: Orange
created: "2017-05-28T00:00:00Z"
description: Perform a zero-downtime restage of an application over the top of an
old one (highly inspired by autopilot)
homepage: https://github.com/orange-cloudfoundry/cf-plugin-bg-restage
name: bg-restage
updated: "2018-11-23T00:00:00Z"
version: 1.1.0
- authors:
- contact: [email protected]
homepage: http://garage.mybluemix.net/
name: Bluemix Garage London
binaries:
- checksum: 8f22d1a4473776498b6aa0e4a17b53ac8bda5ff5
platform: osx
url: https://github.com/bluemixgaragelondon/cf-blue-green-deploy/releases/download/v1.4.0/blue-green-deploy.osx
- checksum: f15d7c0eb7758f969e4db5fcadc2b2d2693eed6f
platform: linux32
url: https://github.com/bluemixgaragelondon/cf-blue-green-deploy/releases/download/v1.4.0/blue-green-deploy.linux32
- checksum: 408229ec75e05dbfc3fac1939a0ea483cd5dbab0
platform: linux64
url: https://github.com/bluemixgaragelondon/cf-blue-green-deploy/releases/download/v1.4.0/blue-green-deploy.linux64
- checksum: 16762b993006dc59e545020d84da68fde7dc9347
platform: win32
url: https://github.com/bluemixgaragelondon/cf-blue-green-deploy/releases/download/v1.4.0/blue-green-deploy.win32
- checksum: 6caa1b92a975bf1eb15160775db1d032626f3688
platform: win64
url: https://github.com/bluemixgaragelondon/cf-blue-green-deploy/releases/download/v1.4.0/blue-green-deploy.win64
company: IBM
created: "2015-03-24T00:00:00Z"
description: Zero downtime deploys with smoke test support
homepage: https://github.com/bluemixgaragelondon/cf-blue-green-deploy
name: blue-green-deploy
updated: "2018-09-02T20:34:44Z"
version: 1.4.0
- authors:
- contact: [email protected]
homepage: https://github.com/davidehringer
name: David Ehringer
binaries:
- checksum: e102fa7c0f5ddc920965113972c03bb833af7fd1
platform: osx
url: https://github.com/davidehringer/cf-buildpack-management-plugin/releases/download/v1.0.0/cf-buildpack-management-plugin_darwin_amd64
- checksum: b1024b0d3711a4c00cc935eeffd6fa27729b1b86
platform: win64
url: https://github.com/davidehringer/cf-buildpack-management-plugin/releases/download/v1.0.0/cf-buildpack-management-plugin_windows_amd64.exe
- checksum: 54a7a62cba2ef4fdbe6b9d13a052648d68a8146b
platform: win32
url: https://github.com/davidehringer/cf-buildpack-management-plugin/releases/download/v1.0.0/cf-buildpack-management-plugin_windows_386.exe
- checksum: 0e8688fbb5302af398b3f210ef5f33945a8f7f10
platform: linux64
url: https://github.com/davidehringer/cf-buildpack-management-plugin/releases/download/v1.0.0/cf-buildpack-management-plugin_linux_amd64
- checksum: 66b5c8bac00e17195afe9be8e987049226bcbc2c
platform: linux32
url: https://github.com/davidehringer/cf-buildpack-management-plugin/releases/download/v1.0.0/cf-buildpack-management-plugin_linux_386
company: null
created: "2015-09-03T00:00:00Z"
description: Provides a declarative way to configure system buildpacks in a Cloud
Foundry installation
homepage: https://github.com/davidehringer/cf-buildpack-management-plugin
name: Buildpack Management
updated: "2015-09-03T00:00:00Z"
version: 1.0.0
- authors:
- contact: [email protected]
homepage: http://www.managingsoftwaredebt.com/
name: Chris Sterling
binaries:
- checksum: 2f551b0a2d6bf01461fe49978990577a607e87e5
platform: osx
url: https://github.com/csterwa/cf_buildpacks_usage_cmd/releases/download/v1.0.0/cf_buildpacks_usage_cmd.osx
- checksum: 00c482fd2890435d160a73b2b1af72271c9ce6c8
platform: win64
url: https://github.com/csterwa/cf_buildpacks_usage_cmd/releases/download/v1.0.0/cf_buildpacks_usage_cmd.win64.exe
- checksum: 5a27d23dce3efde97d0bb8eedce695327a2f0c22
platform: linux64
url: https://github.com/csterwa/cf_buildpacks_usage_cmd/releases/download/v1.0.0/cf_buildpacks_usage_cmd.linux64
company: CenturyLink Cloud
created: "2015-04-02T00:00:00Z"
description: View all buildpacks used in the current CLI target context.
homepage: https://github.com/csterwa/cf_buildpacks_usage_cmd
name: Buildpack Usage
updated: "2015-04-02T00:00:00Z"
version: 1.0.0
- authors:
- contact: [email protected]
homepage: https://github.com/jghiloni
name: Josh Ghiloni of ECS Team
binaries:
- checksum: 5be6c6d99ee0592ff5d790cfb18ae9f08f634d71
platform: osx
url: https://github.com/ECSTeam/buildpack-usage/releases/download/1.0.4/buildpack-usage-macosx
- checksum: da1880f5c3753ea9e7814bd6abfb9fd5b74b7013
platform: win64
url: https://github.com/ECSTeam/buildpack-usage/releases/download/1.0.4/buildpack-usage-windows.exe
- checksum: 55b09563e14a2a52bb6353163a76fe8f08c54737
platform: linux64
url: https://github.com/ECSTeam/buildpack-usage/releases/download/1.0.4/buildpack-usage-linux
company: ECS Team
created: "2016-10-19T12:00:00Z"
description: Show which apps are using an installed buildpack
homepage: https://github.com/ECSTeam/buildpack-usage
name: buildpack-usage
updated: "2017-02-15T12:42:00Z"
version: 1.0.4
- authors:
- contact: [email protected]
homepage: https://github.com/armakuni
name: Adrian Fedoreanu
- contact: [email protected]
homepage: https://github.com/armakuni
name: Sam Bryant
binaries:
- checksum: d69c9b226b8a684dc1c82ddfdd4f21ace78bef5d
platform: linux64
url: https://github.com/armakuni/cf-aklogin/releases/download/v1.3.0/cf-aklogin.linux64
- checksum: 5fd24385040266024dfb78251864ad07439e2db5
platform: linux32
url: https://github.com/armakuni/cf-aklogin/releases/download/v1.3.0/cf-aklogin.linux32
- checksum: 86a801b3292b431c933b0945ecbd24f082c3b579
platform: win64
url: https://github.com/armakuni/cf-aklogin/releases/download/v1.3.0/cf-aklogin.win64
- checksum: 9a1c2e7498026b6124322410dc1f4f7c6b42724a
platform: win32
url: https://github.com/armakuni/cf-aklogin/releases/download/v1.3.0/cf-aklogin.win32
- checksum: f4b96b720e920816d358ff992661150eb8cbf3d7
platform: osx
url: https://github.com/armakuni/cf-aklogin/releases/download/v1.3.0/cf-aklogin.osx
company: Armakuni
created: "2017-07-13T09:38:24Z"
description: CF Login tool to switch between CF environments with a single command
homepage: https://github.com/armakuni/cf-aklogin
name: cf-aklogin
updated: "2017-08-08T15:02:09Z"
version: 1.3.0
- authors:
- contact: [email protected]
homepage: https://github.com/clement360
name: Miguel Clement
- contact: [email protected]
homepage: https://github.com/jeden25
name: Jake Eden
- contact: [email protected]
homepage: https://github.com/reSoley
name: Ryan Soley
binaries:
- checksum: 4a4b2fbdde159a8a8b5e9c7dba208983b085df86
platform: osx
url: https://github.com/ibmjstart/cf-download/releases/download/v1.2.0/cf-download-darwin
- checksum: 26941628204f84eea0d9db4e0b5dc3fe57ddc0e0
platform: win64
url: https://github.com/ibmjstart/cf-download/releases/download/v1.2.0/cf-download-windows.exe
- checksum: 94fa054d9d9b45b17cfcdf7b6521c06b0f66e0da
platform: linux64
url: https://github.com/ibmjstart/cf-download/releases/download/v1.2.0/cf-download-linux
company: IBM jStart
created: "2015-04-21T00:00:00Z"
description: Plugin for downloading your application contents after staging.
homepage: https://github.com/ibmjstart/cf-download
name: cf-download
updated: "2016-11-01T00:00:00Z"
version: 1.2.0
- authors:
- contact: [email protected]
homepage: https://github.com/willmark
name: Mark Williams
- contact: [email protected]
homepage: https://github.com/brybwy
name: Ruoyu Bai
binaries:
- checksum: 3542e77ecb52a384b569654ad74c360da048f16d
platform: osx
url: https://github.com/IBM/cf-icd-plugin/releases/download/0.0.11/icd_osx
- checksum: 3bfd44a253f462266f247f24f74378a85bda6785
platform: win64
url: https://github.com/IBM/cf-icd-plugin/releases/download/0.0.11/icd_win64.exe
- checksum: 64a3149fd38756c448969894a225edbb0687dec0
platform: linux64
url: https://github.com/IBM/cf-icd-plugin/releases/download/0.0.11/icd_linux64
company: IBM
created: "2017-03-16T00:00:00Z"
description: Helper plugin for traceability function in IBM Cloud Devops
homepage: https://github.com/IBM/cf-icd-plugin
name: cf-icd-plugin
updated: "2017-04-04T00:00:00Z"
version: 0.0.11
- authors:
- contact: [email protected]
homepage: https://github.com/Dariquest
name: Daria Anton
- contact: [email protected]
homepage: https://github.com/peanball
name: Alexander Lais
- contact: [email protected]
homepage: https://github.com/maxmoehl
name: Maximilian Moehl
binaries:
- checksum: 2d99d58385d6754d7cabfcccefce1e2b8d626a26
platform: osx
url: https://github.com/cloudfoundry/cf-lookup-route/releases/download/0.1.0/cf-lookup-route.osx
- checksum: 9cfc9d769fcdcfec7670d051d6ceb5993852a6ca
platform: linux64
url: https://github.com/cloudfoundry/cf-lookup-route/releases/download/0.1.0/cf-lookup-route.linux64
- checksum: 49fe70ea7fe3fae413a404fb6fd77374afa190c1
platform: linux32
url: https://github.com/cloudfoundry/cf-lookup-route/releases/download/0.1.0/cf-lookup-route.linux32
- checksum: e41f8e597524a67303dd7469adcdebeb4ed2a7c9
platform: win32
url: https://github.com/cloudfoundry/cf-lookup-route/releases/download/0.1.0/cf-lookup-route.win32
- checksum: d050f56b6cd6510032bc3f86157e245ff5fe0b0e
platform: win64
url: https://github.com/cloudfoundry/cf-lookup-route/releases/download/0.1.0/cf-lookup-route.win64
company: Cloud Foundry Foundation
created: "2024-11-22T00:00:00Z"
description: CF Route Lookup Plugin to identify applications, a given route is pointing
to.
homepage: https://github.com/cloudfoundry/cf-lookup-route
name: cf-lookup-route
updated: "2024-11-22T00:00:00Z"
version: 0.1.0
- authors:
- contact: [email protected]
homepage: https://github.com/nobodyzzz
name: Stanislav Turlo
binaries:
- checksum: d7145496e1ed6df361e2e73b0b0ac6b8564c5bc6
platform: linux32
url: https://github.com/Altoros/cf-predix-analytics-plugin/releases/download/0.0.1/cf-predix-analytics-plugin.linux32
- checksum: 060658b366d0dc96447b5c6f87e1424bb51771d2
platform: linux64
url: https://github.com/Altoros/cf-predix-analytics-plugin/releases/download/0.0.1/cf-predix-analytics-plugin.linux64
- checksum: fb197f5a1fcea15a4de02db652dbb3d34cdbb948
platform: osx
url: https://github.com/Altoros/cf-predix-analytics-plugin/releases/download/0.0.1/cf-predix-analytics-plugin.osx
- checksum: 5dbf18efdf7c1a9e8a05f81429fb0842b741dfa6
platform: win32
url: https://github.com/Altoros/cf-predix-analytics-plugin/releases/download/0.0.1/cf-predix-analytics-plugin.win32
- checksum: 20bbd6e72afb5c15602112f8ab94721e4206b5b1
platform: win64
url: https://github.com/Altoros/cf-predix-analytics-plugin/releases/download/0.0.1/cf-predix-analytics-plugin.win64
company: Altoros
created: "2016-09-21T00:00:00Z"
description: Provides CLI based access to Predix Analytics Catalog features
homepage: https://github.com/Altoros/cf-predix-analytics-plugin
name: cf-predix-analytics-plugin
updated: "2016-09-21T00:00:00Z"
version: 0.0.1
- authors:
- contact: [email protected]
homepage: https://github.com/HappyTobi
name: Tobias Schug
binaries:
- checksum: c9f60607f4ed0ba34682312178e87c7ebca9f2c2
platform: osx
url: https://github.com/HappyTobi/cf-puppeteer/releases/download/1.2.2/cf-puppeteer-darwin
- checksum: 9f087fcc1ae710b9fde2e8d92eac46636b499663
platform: win64
url: https://github.com/HappyTobi/cf-puppeteer/releases/download/1.2.2/cf-puppeteer.exe
- checksum: 3385bd608e2c4af12361890d9538418e02647d29
platform: linux64
url: https://github.com/HappyTobi/cf-puppeteer/releases/download/1.2.2/cf-puppeteer-linux
company: null
created: "2019-01-17T00:00:00Z"
description: Perform a zero-downtime restage of an application over the top of an
old one
homepage: https://cf-puppeteer.happytobi.com
name: cf-puppeteer
updated: "2020-05-31T00:00:00Z"
version: 1.2.2
- authors:
- contact: https://twitter.com/superbeeny
homepage: https://github.com/superbeeny
name: Nick Beenham
binaries:
- checksum: d1e5a497fb27b474fb4d03b0230476ae58fa5b15
platform: osx
url: https://github.com/Comcast/cf-recycle-plugin/releases/download/v1.1.1/cf-recycle-plugin-osx
- checksum: 99879ba8536835ac745edd57c51d00ee4562432e
platform: win64
url: https://github.com/Comcast/cf-recycle-plugin/releases/download/v1.1.1/cf-recycle-plugin-win64.exe
- checksum: 4a49af09e651a695fc30b613a4194975eee8a795
platform: linux64
url: https://github.com/Comcast/cf-recycle-plugin/releases/download/v1.1.1/cf-recycle-plugin-linux
company: Comcast
created: "2018-10-24T16:54:34Z"
description: Sequentially recycle application instances
homepage: https://github.com/comcast/cf-recycle-plugin
name: cf-recycle-plugin
updated: "2018-10-24T16:54:34Z"
version: 1.1.1
- authors:
- contact: [email protected]
homepage: https://github.com/generalmotors/cf-restage-all
name: Justin Klein
binaries:
- checksum: 936c75ba8b059b326104294704d289a8b0db1141
platform: osx
url: https://github.com/generalmotors/cf-restage-all/releases/download/1.0.0/cf-restage-all-amd64-darwin
- checksum: a8f555d182b1178c76c114e04fd445dad9596b56
platform: win32
url: https://github.com/generalmotors/cf-restage-all/releases/download/1.0.0/cf-restage-all-386-windows.exe
- checksum: b372a27efbd5ac9f1e424d9ada01ef640f5e0f7c
platform: win64
url: https://github.com/generalmotors/cf-restage-all/releases/download/1.0.0/cf-restage-all-amd64-windows.exe
- checksum: c2eec81a51a4ba67f492c4a194efc63613abfe17
platform: linux32
url: https://github.com/generalmotors/cf-restage-all/releases/download/1.0.0/cf-restage-all-386-linux
- checksum: 899793cca9d3446bab07652a5fb620737322703a
platform: linux64
url: https://github.com/generalmotors/cf-restage-all/releases/download/1.0.0/cf-restage-all-amd64-linux
company: General Motors
created: "2020-11-24T18:41:19Z"
description: CF plugin for restaging all applications within an pcf space with minimal
downtime.
homepage: https://github.com/generalmotors/cf-restage-all
name: cf-restage-all
updated: "2020-11-24T18:41:19Z"
version: 1.0.0
- authors:
- contact: [email protected]
homepage: https://github.com/wrmilling
name: Winston R. Milling
binaries:
- checksum: f39092cbe359cc778d9783f082c134cb46a01c0b
platform: osx
url: https://github.com/homedepot/cf-rolling-restart/releases/download/v1.1.1/cf-rolling-restart-darwin-amd64
- checksum: 693e0a06a5bc4741fb58c20ddd52c5b60a1edb78
platform: win32
url: https://github.com/homedepot/cf-rolling-restart/releases/download/v1.1.1/cf-rolling-restart-windows-386.exe
- checksum: 72352aeab0948153cce850af0e5b87aca6e6eb16
platform: win64
url: https://github.com/homedepot/cf-rolling-restart/releases/download/v1.1.1/cf-rolling-restart-windows-amd64.exe
- checksum: 7fd7b8e1ebdef565178b5d47e475c026a9345cf5
platform: linux32
url: https://github.com/homedepot/cf-rolling-restart/releases/download/v1.1.1/cf-rolling-restart-linux-386
- checksum: 9f0dfca6b9832c0b25eba09cbd16d49aaf81e918
platform: linux64
url: https://github.com/homedepot/cf-rolling-restart/releases/download/v1.1.1/cf-rolling-restart-linux-amd64
company: The Home Depot
created: "2017-12-26T00:00:00Z"
description: cf-rolling-restart performs a zero-downtime restart of PCF application
instances
homepage: https://github.com/homedepot/cf-rolling-restart
name: cf-rolling-restart
updated: "2019-05-23T17:38:00Z"
version: 1.1.1
- authors:
- homepage: https://github.com/gambtho
name: Thomas Gamble
binaries:
- checksum: 9ba8a64e2ecceac7745545cb646d94eb43477247
platform: osx
url: https://github.com/gambtho/cf_will_it_connect_plugin/releases/download/v1.1.0/cf_will_it_connect_plugin_darwin_amd64
- checksum: 51323e773936268f97233336a487ffd48dc79a0d
platform: win64
url: https://github.com/gambtho/cf_will_it_connect_plugin/releases/download/v1.1.0/cf_willitcon_win64.exe
- checksum: 6ff4a6a85acfbd65871721efad387f3174bfa4bb
platform: linux64
url: https://github.com/gambtho/cf_will_it_connect_plugin/releases/download/v1.1.0/cf_will_it_connect_plugin_linux_amd64
company: null
created: "2016-04-09T00:00:00Z"
description: Can CF connect to a thing?
homepage: https://github.com/gambtho/cf_will_it_connect_plugin
name: cf-willitconnect
updated: "2016-04-11T00:00:00Z"
version: 1.1.0
- authors:
- contact: [email protected]
name: Samuel Dawson
binaries:
- checksum: a6a8c591d145b654ca1a7ec232b826de4033d3d7
platform: osx
url: https://d3p1cc0zb2wjno.cloudfront.net/cfdev/cfdev-v0.0.18-rc.36-darwin
- checksum: c4e5ec582539ffa19d20e6d5b1cb409edc2908d3
platform: win64
url: https://d3p1cc0zb2wjno.cloudfront.net/cfdev/cfdev-v0.0.18-rc.36-windows.exe
- checksum: fe8bead5895288dfc25d468f3dd0c3ca0a1f2e4a
platform: linux64
url: https://d3p1cc0zb2wjno.cloudfront.net/cfdev/cfdev-v0.0.18-rc.36-linux
company: Pivotal
created: "2018-05-23T00:00:00Z"
description: Run Cloud Foundry in your local environment
homepage: https://github.com/cloudfoundry-incubator/cfdev
name: cfdev
updated: "2020-07-01T00:00:00Z"
version: 0.0.18
- authors:
- contact: [email protected]
homepage: https://github.com/sclevine
name: Stephen Levine
binaries:
- checksum: cd65b7d17fa839307f3bc629733d58e870730f77
platform: osx
url: https://github.com/cloudfoundry-incubator/cflocal/releases/download/v0.20.0/cflocal-0.20.0-macos
- checksum: 7b37089ff700587cb79d816af55b80f0560e254e
platform: win64
url: https://github.com/cloudfoundry-incubator/cflocal/releases/download/v0.20.0/cflocal-0.20.0-windows.exe
- checksum: e6ea34fa03e223731e763d46bb10459f86a93957
platform: linux64
url: https://github.com/cloudfoundry-incubator/cflocal/releases/download/v0.20.0/cflocal-0.20.0-linux
company: null
created: "2017-03-23T00:00:00Z"
description: Stage and launch CF apps, push and pull droplets, and connect to real
CF services -- in Docker
homepage: https://github.com/sclevine/cflocal
name: cflocal
updated: "2020-02-03T00:00:00Z"
version: 0.20.0
- authors:
- contact: https://ecastella.com
homepage: https://github.com/enric11/cf-cli-check-before-deploy
name: Enric Castella
binaries:
- checksum: 2c26bdde09c6c703efac4ba2e32a58ad42ee680e
platform: osx
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.2.0/check-before-deploy-mac
- checksum: 5529ca198dd4dac3879ff8204988f59fd0ef4229
platform: win64
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.2.0/check-before-deploy-win64.exe
- checksum: 3d403bbde5ece1e800e5d6adb88a1d63527c11da
platform: linux64
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.2.0/check-before-deploy-linux64
- checksum: 4ec3f2a6d11db44a5e240a52d2f34a31b4a43eca
platform: win32
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.2.0/check-before-deploy-win32.exe
- checksum: 6afbcfc77f5b63d8c910161e58b90689a155fca4
platform: linux32
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.2.0/check-before-deploy-linux32
company: null
created: "2020-04-11T00:00:00Z"
description: This plugin check the binding of services in YAML/MTA and services
in org/space. Also it check if the plan and service plan exist in your org/space
homepage: https://github.com/enric11/cf-cli-check-before-deploy
name: check-before-deploy
updated: "2021-10-12T00:00:00Z"
version: 1.2.0
- authors:
- contact: [email protected]
homepage: https://github.com/simonleung8
name: Simon Leung
binaries:
- checksum: 3c3f23cae23435a2ccb6a9e0a95858525e2d5f54
platform: osx
url: https://github.com/simonleung8/cli-plugin-recorder/releases/download/v1.0.2/cli-plugin-recorder_darwin_amd64
- checksum: 9296495cbec778e6bf01bbadb4c996bee11a1121
platform: win64
url: https://github.com/simonleung8/cli-plugin-recorder/releases/download/v1.0.2/cli-plugin-recorder_windows_amd64.exe
- checksum: a70a6749ac32ef9b6b509f6218edcdd41f22f6e9
platform: win32
url: https://github.com/simonleung8/cli-plugin-recorder/releases/download/v1.0.2/cli-plugin-recorder_windows_386.exe
- checksum: 5eae3efe42c60b10dc51c6730ef7754c24925510
platform: linux64
url: https://github.com/simonleung8/cli-plugin-recorder/releases/download/v1.0.2/cli-plugin-recorder_linux_amd64
- checksum: a1227df100e59e8c56309a70f6337f093eb91115
platform: linux32
url: https://github.com/simonleung8/cli-plugin-recorder/releases/download/v1.0.2/cli-plugin-recorder_linux_386
company: null
created: "2015-02-12T00:00:00Z"
description: Records and playbacks CLI commands.
homepage: https://github.com/simonleung8/cli-plugin-recorder
name: CLI-Recorder
updated: "2015-09-03T00:00:00Z"
version: 1.0.2
- authors:
- contact: [email protected]
homepage: https://github.com/xchapter7x
name: John Calabrese
binaries:
- checksum: 30b8160d9583e1c408530c120cdfe73b2d923152
platform: osx
url: https://github.com/xchapter7x/deploycloud/releases/download/v1.0.1/deploycloud_darwin_amd64
- checksum: 5f6e1668020e51b16a7495c118a8c43be87bc309
platform: win64
url: https://github.com/xchapter7x/deploycloud/releases/download/v1.0.1/deploycloud_windows_amd64.exe
- checksum: acc12a25c634acaf560c1718c4a0378acfab6eb6
platform: linux64
url: https://github.com/xchapter7x/deploycloud/releases/download/v1.0.1/deploycloud_linux_amd64
company: null
created: "2015-09-21T00:00:00Z"
description: This plugin allows you to manage application deployment details and
manifests in a github repo (like spring cloud config server for deployments)
homepage: https://github.com/xchapter7x/deploycloud
name: Cloud Deployment Plugin
updated: "2015-09-21T00:00:00Z"
version: 1.0.1
- authors:
- contact: [email protected]
homepage: https://www.cloud.service.gov.uk/
name: Government Digital Service
binaries:
- checksum: ea0b7d0f86191bd983bb003b30be85ac6f9ac3d1
platform: osx
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.1.1/cf-conduit.darwin.amd64
- checksum: 86a3bdc811bf6f5d47a6c0584f13a8397e9b1d05
platform: osx
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.1.1/cf-conduit.darwin.arm64
- checksum: 882a0c96f34513691bc3511b6e265014cef1bdf4
platform: win32
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.1.1/cf-conduit.windows.386
- checksum: f5c10e5d9988c7b8f211e76a888b1eae04279f69
platform: win64
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.1.1/cf-conduit.windows.amd64
- checksum: c1b629fe1dae124ea3009275867be2879a141ec8
platform: win64
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.1.1/cf-conduit.windows.arm64
- checksum: 71f0c27e2955e0c7d767260ad6152988560b9bff
platform: linux32
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.1.1/cf-conduit.linux.386
- checksum: 2c5ea693f9920b1b55087cffe47abb0b68785fa2
platform: linux64
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.1.1/cf-conduit.linux.amd64
- checksum: 731fedef71defd472ef832257250487a756c8312
platform: linux64
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.1.1/cf-conduit.linux.arm64
company: Government Digital Service
created: "2017-12-12T00:00:00Z"
description: Makes it easy to directly connect to your remote service instances
homepage: https://github.com/alphagov/paas-cf-conduit
name: conduit
updated: "2023-03-01T13:00:00Z"
version: 0.1.1
- authors:
- contact: [email protected]
homepage: http://github.com/mevansam/
name: Mevan Samaratunga
binaries:
- checksum: 538e3fa1ad902cb2d56e67135fee8d7a1a006c23
platform: osx
url: https://github.com/mevansam/cf-copy-plugin/releases/download/0.9.4/cf-copy-plugin_osx
- checksum: fc32a58ab9c59c6ff7ea645c3a0c1c5691dd8a42
platform: win64
url: https://github.com/mevansam/cf-copy-plugin/releases/download/0.9.4/cf-copy-plugin_win64.exe
- checksum: f8400ea82cdd5d453c1c26d204cca9e10e4e2738
platform: linux64
url: https://github.com/mevansam/cf-copy-plugin/releases/download/0.9.4/cf-copy-plugin_linux64
company: null
created: "2016-10-01T00:00:00Z"
description: Copies applications and services in current space to another space
or Cloud Foundry target.
homepage: http://github.com/mevansam/cf-copy-plugin
name: copy
updated: "2017-05-22T11:44:18Z"
version: 0.9.4
- authors:
- contact: [email protected]
homepage: https://github.com/aaronmaturen
name: Aaron Maturen
- contact: [email protected]
homepage: https://github.com/duanemay
name: Duane May
binaries:
- checksum: 8ac16c576ed063694a682c4f7a9d3b7bba110b14
platform: osx
url: https://github.com/cengage/cf-copy-autoscaler/releases/download/0.0.1/copy-autoscaler-darwin64
- checksum: d00f1e213bb163c23654c4697c7e1942a446472a
platform: win64
url: https://github.com/cengage/cf-copy-autoscaler/releases/download/0.0.1/copy-autoscaler-win64.exe
- checksum: d1e65188723da39e07cc78d114e76512b7166afc
platform: linux64
url: https://github.com/cengage/cf-copy-autoscaler/releases/download/0.0.1/copy-autoscaler-linux64
company: Cengage Learning
created: "2018-03-13T00:00:00Z"
description: CF CLI Plugin to import/export Pivotal App Autoscaler Settings
homepage: https://github.com/cengage/cf-copy-autoscaler
name: Copy Autoscaler
updated: "2018-03-13T00:00:00Z"
version: 0.0.1
- authors:
- contact: [email protected]
homepage: https://github.com/jthomas
name: James Thomas
binaries:
- checksum: 31697e969eeb1487f2abcee2ede735e4ea0a3735
platform: osx
url: https://github.com/jthomas/copyenv/raw/v1.2.4/bin/copyenv.osx
- checksum: 668821dcfa3461c79a98ca9838f62d6ba004af9c
platform: linux32
url: https://github.com/jthomas/copyenv/raw/v1.2.4/bin/copyenv.linux32
- checksum: 30141bf7d843efdc29854069c64d377aff304c6b
platform: linux64
url: https://github.com/jthomas/copyenv/raw/v1.2.4/bin/copyenv.linux64
- checksum: 57e7c5c7fb09e514006b9bfffe34e021c75870ef
platform: win32
url: https://github.com/jthomas/copyenv/raw/v1.2.4/bin/copyenv.win32
- checksum: de116eba4d4f14377a4435bbfc7e10bad0708a34
platform: win64
url: https://github.com/jthomas/copyenv/raw/v1.2.4/bin/copyenv.win64
company: IBM
created: "2015-04-15T00:00:00Z"
description: Expose remote VCAP_SERVICES and VCAP_APPLICATION on the client environment
homepage: https://github.com/jthomas/copyenv
name: copyenv
updated: "2018-06-06T00:00:00Z"
version: 1.2.4
- authors:
- contact: [email protected]
homepage: https://github.com/dawu415
name: David Wu
binaries:
- checksum: 30839b103e74bbff07f094f7e59de7aea650985f
platform: osx
url: https://github.com/dawu415/CF-CLI-Create-Service-Push-Plugin/releases/download/1.3.2/CreateServicePushPlugin.osx
- checksum: c5074d595962ff3383218c454da45a4ae969dde3
platform: win32
url: https://github.com/dawu415/CF-CLI-Create-Service-Push-Plugin/releases/download/1.3.2/CreateServicePushPlugin.unsigned.win32
- checksum: f45ef1753fee7f2c0d81353438e38866d2197a42
platform: win64
url: https://github.com/dawu415/CF-CLI-Create-Service-Push-Plugin/releases/download/1.3.2/CreateServicePushPlugin.unsigned.win64
- checksum: 400106aa8b7b4302d03dd668d0b67b1c1f1ca28c
platform: linux32
url: https://github.com/dawu415/CF-CLI-Create-Service-Push-Plugin/releases/download/1.3.2/CreateServicePushPlugin.linux32
- checksum: 61b1e9b1a8f5b0fcbbc82e69fb0fd1659c9f5d86
platform: linux64
url: https://github.com/dawu415/CF-CLI-Create-Service-Push-Plugin/releases/download/1.3.2/CreateServicePushPlugin.linux64
company: null
created: "2017-11-14T00:00:00Z"
description: A CF CLI plugin to create services specified from a services manifest
yml file and then push an application to Cloud Foundry
homepage: https://github.com/dawu415/CF-CLI-Create-Service-Push-Plugin
name: Create-Service-Push
updated: "2021-03-05T00:00:00Z"
version: 1.3.2
- authors:
- contact: [email protected]
homepage: https://github.com/saphanaacademy
name: Philip Mugglestone
- contact: [email protected]
name: Tom Doil
- contact: [email protected]
name: Daniel Statzner
binaries:
- checksum: 1e89a24902eb4e22cfe33040b602cac1c44b2e5a
platform: linux64
url: https://github.com/SAP/cf-cli-defaultenv-plugin/releases/download/v1.1.1/DefaultEnv.linux64
- checksum: 01b8ce0d940bdf54f2ae6b8ac34f6834ff0f504c
platform: linux32
url: https://github.com/SAP/cf-cli-defaultenv-plugin/releases/download/v1.1.1/DefaultEnv.linux32
- checksum: 47e1330242c55d9e19a8014160de5859e451f361
platform: osx
url: https://github.com/SAP/cf-cli-defaultenv-plugin/releases/download/v1.1.1/DefaultEnv.osx
- checksum: 1156a7ed645fc0f065f7b2363c14687567012fa6
platform: win32
url: https://github.com/SAP/cf-cli-defaultenv-plugin/releases/download/v1.1.1/DefaultEnv.win32
- checksum: c4aa0468032169510cb2a05cb0ce6fd1a0ab63b0
platform: win64
url: https://github.com/SAP/cf-cli-defaultenv-plugin/releases/download/v1.1.1/DefaultEnv.win64
company: SAP
created: "2021-10-12T00:00:00Z"
description: Create default-env.json file with environment variables of an app.
homepage: https://github.com/SAP/cf-cli-defaultenv-plugin
name: DefaultEnv
updated: "2024-06-17T00:00:00Z"
version: 1.1.1
- authors:
- contact: [email protected]
homepage: https://github.com/jhunt
name: James Hunt
- contact: [email protected]
homepage: https://github.com/quintessence
name: Quintessence Anx
binaries:
- checksum: 2c21e98fa6b548a7fb728a6e7f9ac84ba586899e
platform: osx
url: https://github.com/cloudfoundry-community/cf-plugin-deploy/releases/download/0.3.0/cf-plugin-deploy-darwin
- checksum: d37a64ac0447af2ed5549132b7de8e4f79877ef6
platform: win64
url: https://github.com/cloudfoundry-community/cf-plugin-deploy/releases/download/0.3.0/cf-plugin-deploy-windows.exe
- checksum: 4e0e79068f08db8c440cf59272854795c42c60e5
platform: linux32
url: https://github.com/cloudfoundry-community/cf-plugin-deploy/releases/download/0.3.0/cf-plugin-deploy-linux32
- checksum: 9ad8bb5a89550e177923de57c7494ef4b7859682
platform: linux64
url: https://github.com/cloudfoundry-community/cf-plugin-deploy/releases/download/0.3.0/cf-plugin-deploy-linux64
company: null
created: "2016-06-28T00:00:00Z"
description: Create/update initial Cloud Foundry state (orgs, spaces, users, services,
apps, and more) via a yml file
homepage: https://github.com/cloudfoundry-community/cf-plugin-deploy
name: deploy
updated: "2017-06-23T00:00:00Z"
version: 0.3.0
- authors:
- contact: [email protected]
homepage: https://github.com/jghiloni
name: Josh Ghiloni of ECS Team
binaries:
- checksum: 501f5734e280fd81bce1ca1cfa0e9def6b26ae00
platform: osx
url: https://github.com/ECSTeam/do-all/releases/download/1.1.2/do-all-macosx
- checksum: 3cde5f2124a0978bc6c3f0724164a1b3c7c924b7
platform: win64
url: https://github.com/ECSTeam/do-all/releases/download/1.1.2/do-all-windows-amd64.exe
- checksum: b50c2f359c938a0bdf849224c155f45a5c878f2c
platform: linux64
url: https://github.com/ECSTeam/do-all/releases/download/1.1.2/do-all-linux-amd64
- checksum: 77ed19f866c99dde97c50a6dc9a18222495f3c3e
platform: win32
url: https://github.com/ECSTeam/do-all/releases/download/1.1.2/do-all-windows-386.exe
- checksum: ef4de9d5b336adc872dbfd2f3f057dfca47a7685
platform: linux32
url: https://github.com/ECSTeam/do-all/releases/download/1.1.2/do-all-linux-386
company: ECS Team
created: "2016-07-07T00:00:00Z"
description: Run the same command on all the apps in a space, org, or globally
homepage: https://github.com/ECSTeam/do-all
name: do-all
updated: "2017-01-21T00:00:00Z"
version: 1.1.2
- authors:
- contact: [email protected]
homepage: https://github.com/jghiloni
name: Josh Ghiloni of ECS Team
binaries:
- checksum: 27a3fa33e0f2d6b69e423b44c08e54f2f4742d80
platform: osx
url: https://github.com/ECSTeam/docker-usage/releases/download/1.0.3/docker-usage-macosx
- checksum: 00f5c86bb06e893b881a7054f9389382a744c748
platform: win64
url: https://github.com/ECSTeam/docker-usage/releases/download/1.0.3/docker-usage-windows.exe
- checksum: c523b8b414d89c368b07a89dbf7ede570edea129
platform: linux64
url: https://github.com/ECSTeam/docker-usage/releases/download/1.0.3/docker-usage-linux
company: ECS Team
created: "2016-11-03T12:00:00Z"
description: Show which apps are using docker images
homepage: https://github.com/ECSTeam/docker-usage
name: docker-usage
updated: "2016-11-03T12:00:00Z"
version: 1.0.3
- authors:
- contact: [email protected]
homepage: https://github.com/emirozer
name: Emir Ozer
binaries:
- checksum: d3fc1fda712387e32963adb2e6635f1703559772
platform: osx
url: https://github.com/emirozer/cf-doctor-plugin/releases/download/1.0.3/doctor_plugin_darwin_amd64
- checksum: e790ae6ffc87c28e9cfe59986294cc154f06ee1d
platform: win64
url: https://github.com/emirozer/cf-doctor-plugin/releases/download/1.0.3/doctor_plugin_windows_amd64.exe
- checksum: 35e5ea89596b7a7b0ee9ef41aa1522341b02c4bd
platform: win32
url: https://github.com/emirozer/cf-doctor-plugin/releases/download/1.0.3/doctor_plugin_windows_386.exe
- checksum: 3ca35cace709c12e664a95c4d0d1893d52f2db49
platform: linux64
url: https://github.com/emirozer/cf-doctor-plugin/releases/download/1.0.3/doctor_plugin_linux_amd64
- checksum: 5c7dc24fb9cc8c10ac38dd8ec0f9f80d01d2f97a
platform: linux32
url: https://github.com/emirozer/cf-doctor-plugin/releases/download/1.0.3/doctor_plugin_linux_386
company: null
created: "2015-12-13T00:00:00Z"
description: doctor scans your deployed applications, routes and services for anomalies
and reports any issues found. (CLI v6.7.0+)
homepage: https://github.com/emirozer/cf-doctor-plugin
name: doctor
updated: "2017-01-03T00:00:00Z"
version: 1.0.3
- authors:
- contact: [email protected]
homepage: https://github.com/krujos/
name: Josh Kruck
binaries:
- checksum: 344f50566263abaf7a4a9549c454b6a4f1f77eed
platform: osx
url: https://github.com/krujos/download_droplet_plugin/raw/1.0.1/bin/osx/download_droplet_plugin
- checksum: 70a8cce34cac7ea493e72f18eabe2abd55e63b99
platform: win64
url: https://github.com/krujos/download_droplet_plugin/raw/1.0.1/bin/win64/download_droplet_plugin.exe
- checksum: a1076347648f7dfb7268c4fa275a3787762a088f
platform: linux64
url: https://github.com/krujos/download_droplet_plugin/raw/1.0.1/bin/linux64/download_droplet_plugin
company: null
created: "2016-01-11T00:00:00Z"
description: Download droplets to your local machine
homepage: https://github.com/krujos/download_droplet_plugin
name: Download Droplet
updated: "2016-02-08T00:00:00Z"
version: 1.0.1
- authors:
- contact: [email protected]
homepage: https://github.com/xiwenc
name: Xiwen Cheng
binaries:
- checksum: 436f8cf29511f6787e63f842a4415dbea37e501f
platform: osx
url: https://github.com/xiwenc/cf-fastpush-plugin/releases/download/v1.1.0/cf-fastpush-plugin_darwin_amd64
- checksum: f2aa75bf457d38c64b2f9442a0444e45ee49934c
platform: win64
url: https://github.com/xiwenc/cf-fastpush-plugin/releases/download/v1.1.0/cf-fastpush-plugin_windows_amd64.exe
- checksum: 961e3ea0fe06f993e7ad823cb43b4fe943b056ec
platform: linux64
url: https://github.com/xiwenc/cf-fastpush-plugin/releases/download/v1.1.0/cf-fastpush-plugin_linux_amd64
company: Mendix
created: "2016-02-21T00:00:00Z"
description: Fast, non-persistent, smart and incrementally updating of your application
homepage: https://github.com/xiwenc/cf-fastpush-plugin
name: fastpush
updated: "2017-09-21T00:00:00Z"
version: 1.1.0
- authors:
- contact: [email protected]
homepage: https://github.com/jtuchscherer
name: Johannes Tuchscherer
- contact: [email protected]
homepage: https://github.com/wfernandes
name: Warren Fernandes
binaries:
- checksum: cfa49937835443f1a4d752389d75deb10037cac5
platform: osx
url: https://github.com/cloudfoundry-community/firehose-plugin/releases/download/0.13.0/nozzle-plugin-darwin
- checksum: cec9e01966b40045bf2411e277a6dbe5a698d23e
platform: win64
url: https://github.com/cloudfoundry-community/firehose-plugin/releases/download/0.13.0/nozzle-plugin.exe
- checksum: 6640803af0dc097d0bebc14cca67d48c2540cc3c
platform: linux64
url: https://github.com/cloudfoundry-community/firehose-plugin/releases/download/0.13.0/nozzle-plugin-linux
company: null
created: "2015-09-09T00:00:00Z"
description: This plugin allows you to connect to the firehose
homepage: http://github.com/cloudfoundry-community/firehose-plugin
name: Firehose Plugin
updated: "2017-11-18T21:17:15Z"
version: 0.13.0
- authors:
- contact: [email protected]
homepage: https://github.com/gemfire/tanzu-gemfire-management-cf-plugin
name: Pivotal
binaries:
- checksum: fe83d2c190e4a14874592e12769e5a7e3ddc4d59
platform: osx
url: https://github.com/gemfire/tanzu-gemfire-management-cf-plugin/releases/download/v1.0.6/gemfire-osx
- checksum: 0f263f0b71b0594aa49b28adeacd59cc3c60b91e
platform: win64
url: https://github.com/gemfire/tanzu-gemfire-management-cf-plugin/releases/download/v1.0.6/gemfire-win64.exe
- checksum: 9d0dacd2e89426b60aeaf035625ac55156b20de4
platform: linux64
url: https://github.com/gemfire/tanzu-gemfire-management-cf-plugin/releases/download/v1.0.6/gemfire-linux64
company: Pivotal
created: "2020-03-31T00:00:00Z"
description: Allows a user to manage a VMware Tanzu GemFire cluster
homepage: https://github.com/gemfire/tanzu-gemfire-management-cf-plugin
name: gemfire
updated: "2020-04-15T00:00:00Z"
version: 1.0.6
- authors: