forked from cloudfoundry/cli-plugin-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo-index.yml
1966 lines (1965 loc) · 90 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:
- contact: [email protected]
homepage: https://github.com/cdlliuy
name: Ying Liu
binaries:
- checksum: c9dbac478e330f08777118403c06a3acc1624fcc
platform: osx
url: https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/download/v3.0.0/ascli.osx
- checksum: 2679e5b46e704b62528b906ef0ad3e754bd83bd9
platform: linux32
url: https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/download/v3.0.0/ascli.linux32
- checksum: 6d7dce84d19b77b127f0f28e235427be81cb1d99
platform: linux64
url: https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/download/v3.0.0/ascli.linux64
- checksum: f7031414dc479e2a9d587d19e16f3419143f856b
platform: win32
url: https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/download/v3.0.0/ascli.win32.exe
- checksum: 202a1e32678b325390e8dc37b4abaa24a155de2e
platform: win64
url: https://github.com/cloudfoundry/app-autoscaler-cli-plugin/releases/download/v3.0.0/ascli.win64.exe
company: IBM
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-incubator/app-autoscaler-cli-plugin
name: app-autoscaler-plugin
updated: 2019-11-08T00:00:00Z
version: 3.0.0
- 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: df9ab34a8173a3f3b51c2afb9e5624ebb399847a
platform: osx
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.3.0/adbr-plugin-darwin-amd64
- checksum: 28ab9e9349c11a9cad2483d9b07c6f550e98de2f
platform: linux32
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.3.0/adbr-plugin-linux-386
- checksum: 7d1fd08e006bbbd82cb72dca2baeefc092d70a15
platform: linux64
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.3.0/adbr-plugin-linux-amd64
- checksum: 217d0648ffef0a7ce628f6a7d591b7b7652d8ac5
platform: win32
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.3.0/adbr-plugin-windows-386.exe
- checksum: db8dafc05b8aa2e74186502bd704dab078baa54a
platform: win64
url: https://adbr-cli-plugin-public.s3-us-west-1.amazonaws.com/0.3.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.pivotal.io//p-mysql/backup-restore.html
name: ApplicationDataBackupRestore
updated: 2021-05-26T17:28:44Z
version: 0.3.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/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:
- contact: [email protected]
homepage: https://github.com/ArthurHlt
name: Arthur Halet
binaries:
- checksum: ca7fcaffba6c7af49dc4ad2e355567add7aba098
platform: osx
url: https://github.com/orange-cloudfoundry/cf-security-entitlement/releases/download/v0.1.12/cfsecurity-plugin_darwin_amd64
- checksum: 0bc64702ddb4616fec13a4404e0563e817b634f2
platform: win64
url: https://github.com/orange-cloudfoundry/cf-security-entitlement/releases/download/v0.1.12/cfsecurity-plugin_windows_amd64.exe
- checksum: 50b53733dc54e895d5ea9204cbe62681121366eb
platform: linux64
url: https://github.com/orange-cloudfoundry/cf-security-entitlement/releases/download/v0.1.12/cfsecurity-plugin_linux_amd64
company: Orange
created: 2019-07-12T00:00:00Z
description: Plugin to help usage of cf-security-entitlement
homepage: https://github.com/orange-cloudfoundry/cf-security-entitlement
name: cf-security-entitlement
updated: 2020-12-16T00:00:00Z
version: 0.1.12
- 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: c97abe2dd0f6de9039039d714fcacd682136cb30
platform: osx
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.1.0/check-before-deploy-mac
- checksum: da9998bf6448afdd82b12cdce93bf0259cabbe54
platform: win64
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.1.0/check-before-deploy-win64.exe
- checksum: 46c804f2c612d76df4b6c8c75089fe5706ef9355
platform: linux64
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.1.0/check-before-deploy-linux64
- checksum: 1d953fc09d6ba693260e8e1dfa67135f9c917950
platform: win32
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.1.0/check-before-deploy-win32.exe
- checksum: 4a9f9e68d7fc3a6d589ede2bc3786f1e93a42ed0
platform: linux32
url: https://github.com/enric11/cf-cli-check-before-deploy/releases/download/1.1.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: 2020-04-19T00:00:00Z
version: 1.1.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:
- name: Government Digital Service
binaries:
- checksum: d194990e589c6516d9de36475f895c9f7b54b6cf
platform: osx
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.0.13/cf-conduit.darwin.amd64
- checksum: db4b3abbcb10093b4f221edd7e3456af747e3d2b
platform: win32
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.0.13/cf-conduit.windows.386
- checksum: abf49de0c4a71f3969572b90b193306ceaf98223
platform: win64
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.0.13/cf-conduit.windows.amd64
- checksum: dec0a0305fb1ea5e97160aeca9671b33ad936c08
platform: linux32
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.0.13/cf-conduit.linux.386
- checksum: 4f2c8ba935e2ae8e67a6494ef3ceb0a25b054fc1
platform: linux64
url: https://github.com/alphagov/paas-cf-conduit/releases/download/v0.0.13/cf-conduit.linux.amd64
company: null
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: 2021-09-09T10:00:00Z
version: 0.0.13
- 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/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:
- name: CF Loggregator Team
binaries:
- checksum: 2f4dbf99b4cc31e960599eca298eb982e4195a55
platform: osx
url: https://github.com/cloudfoundry/cf-drain-cli/releases/download/v2.0.0/cf-drain-cli-darwin
- checksum: 9aa82d816269411cd0e5e6bd65cd610fcd6e2062
platform: linux64
url: https://github.com/cloudfoundry/cf-drain-cli/releases/download/v2.0.0/cf-drain-cli-linux
- checksum: af088c152cba2f7b6636ce9138342d1882ddd7ad
platform: win64
url: https://github.com/cloudfoundry/cf-drain-cli/releases/download/v2.0.0/cf-drain-cli-windows
company: Pivotal
created: 2018-04-20T00:00:00Z
description: A plugin to simplify interactions with user provided syslog drains.
homepage: https://github.com/cloudfoundry/cf-drain-cli
name: drains
updated: 2019-11-06T00:00:00Z
version: 2.0.0
- 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:
- contact: [email protected]
homepage: https://github.com/akoranne
name: Ajay Koranne of ECS Team
binaries:
- checksum: 8d3679ab3788ab70d5bdec8e88a2fb0c87bf7ac1
platform: osx
url: https://github.com/ECSTeam/cf_get_events/releases/download/v0.6.0/get-events-plugin-darwin
- checksum: 1d725d77b4355ec5a86f19a67242dd14242309b0
platform: win64
url: https://github.com/ECSTeam/cf_get_events/releases/download/v0.6.0/get-events-plugin.exe
- checksum: a066448490f0523ea04d5e02b55d3edada8cb858
platform: linux64
url: https://github.com/ECSTeam/cf_get_events/releases/download/v0.6.0/get-events-plugin-linux
company: ECS Team
created: 2016-12-28T14:00:00Z
description: Get microservice events
homepage: https://github.com/ECSTeam/cf_get_events
name: get-events
updated: 2017-01-11T21:29:06Z
version: 0.6.0
- authors:
- contact: [email protected]
homepage: https://github.com/micellius
name: micellius
binaries:
- checksum: 6a78d6b44720b21c9ac103d18abdec84bd4a1cd1
platform: osx
url: https://github.com/SAP/cf-html5-apps-repo-cli-plugin/releases/download/v1.4.6/cf-html5-apps-repo-cli-plugin-darwin-amd64
- checksum: 32210813f17aa1cc9c4c2a5fab9fee64ef33eb83
platform: linux64
url: https://github.com/SAP/cf-html5-apps-repo-cli-plugin/releases/download/v1.4.6/cf-html5-apps-repo-cli-plugin-linux-amd64
- checksum: 4420299058fee1c7e62fe8032803f9538b3a31d3