-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.json
More file actions
766 lines (766 loc) · 26.3 KB
/
tasks.json
File metadata and controls
766 lines (766 loc) · 26.3 KB
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
{
"tasks": [
{
"name": "aws",
"description": "AWS CLI https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html",
"binary_name": "aws",
"install_type": "package",
"version_cmd": "--version",
"enabled": true,
"install_version": "latest",
"package": {
"link": "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip",
"after_unpack_install_cmd": {
"flag": true,
"sudo": true,
"cmd": "aws/install --update"
},
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "chart-releaser",
"description": "Helps Turn GitHub Repositories into Helm Chart Repositories",
"binary_name": "cr",
"install_type": "github",
"version_cmd": "version",
"enabled": true,
"install_version": "v1.8.1",
"github": {
"url": "https://github.com/helm/chart-releaser",
"api_url": "https://api.github.com/repos/helm/chart-releaser",
"parse_release_notes": false,
"asset": "chart-releaser_1.8.1_linux_amd64.tar.gz",
"asset_type": "package"
}
},
{
"name": "cmctl",
"description": "The cert-manager Command Line Tool",
"binary_name": "cmctl",
"install_type": "github",
"version_cmd": "version --client",
"enabled": true,
"install_version": "v2.3.0",
"github": {
"url": "https://github.com/cert-manager/cmctl",
"api_url": "https://api.github.com/repos/cert-manager/cmctl",
"parse_release_notes": false,
"asset": "cmctl_linux_amd64",
"asset_type": "binary",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "devopstools",
"description": "DevOps Tools Installer",
"binary_name": "devopstools",
"install_type": "github",
"version_cmd": "--version",
"enabled": true,
"install_version": "0.2.0",
"github": {
"url": "https://github.com/redacid/DevOpsTools",
"api_url": "https://api.github.com/repos/redacid/DevOpsTools",
"parse_release_notes": false,
"asset": "devopstools_0.2.0-1_amd64.deb",
"asset_type": "deb_based",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": true
},
{
"name": "dive",
"binary_name": "dive",
"description": "A tool for exploring a Docker image, layer contents, and discovering ways to shrink the size of your Docker/OCI image",
"install_type": "github",
"install_version": "v0.13.1",
"version_cmd": "--version",
"enabled": true,
"github": {
"url": "https://github.com/wagoodman/dive",
"api_url": "https://api.github.com/repos/wagoodman/dive",
"asset": "dive_0.13.1_linux_amd64.deb",
"asset_type": "deb_based"
}
},
{
"name": "eksctl",
"description": "The official CLI for Amazon EKS",
"binary_name": "eksctl",
"install_type": "github",
"version_cmd": "version",
"enabled": true,
"install_version": "v0.217.0",
"github": {
"url": "https://github.com/eksctl-io/eksctl",
"api_url": "https://api.github.com/repos/eksctl-io/eksctl",
"parse_release_notes": false,
"asset": "eksctl_Linux_amd64.tar.gz",
"asset_type": "package",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "gh",
"description": "gh is GitHub on the command line. It brings pull requests, issues, and other GitHub concepts to the terminal next to where you are already working with git and your code",
"binary_name": "gh",
"install_type": "github",
"version_cmd": "--version",
"enabled": true,
"install_version": "v2.83.1",
"github": {
"url": "https://github.com/cli/cli/",
"api_url": "https://api.github.com/repos/cli/cli",
"parse_release_notes": false,
"asset": "gh_2.83.1_linux_amd64.deb",
"asset_type": "deb_based",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "glab",
"description": "v1.61.0_amd64_tgz https://gitlab.com/gitlab-org/cli/-/packages/",
"binary_name": "glab",
"install_type": "package",
"version_cmd": "--version",
"enabled": true,
"install_version": "1.61.0",
"package": {
"link": "https://gitlab.com/gitlab-org/cli/-/package_files/204332295/download",
"after_unpack_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
},
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "go-containerregistry",
"description": "crane - This is a golang library for working with container registries. It\u0027s largely based on the Python library of the same name.",
"binary_name": "crane",
"install_type": "github",
"version_cmd": "version",
"disable_version_check": false,
"enabled": true,
"install_version": "v0.20.6",
"github": {
"url": "https://github.com/google/go-containerregistry",
"api_url": "https://api.github.com/repos/google/go-containerregistry",
"parse_release_notes": false,
"asset": "go-containerregistry_Linux_x86_64.tar.gz",
"asset_type": "package",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
}
},
{
"name": "helm",
"description": "Helm is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources",
"binary_name": "helm",
"install_type": "github",
"version_cmd": "version",
"enabled": true,
"install_version": "v3.19.2",
"github": {
"url": "https://github.com/helm/helm",
"api_url": "https://api.github.com/repos/helm/helm",
"parse_release_notes": true,
"asset": "helm-v3.19.2-linux-amd64.tar.gz",
"asset_type": "package",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "helm-docs",
"description": "The helm-docs tool auto-generates documentation from helm charts into markdown files. The resulting files contain metadata about their respective chart and a table with each of the chart\u0027s values, their defaults, and an optional description parsed from comments.",
"binary_name": "helm-docs",
"install_type": "github",
"version_cmd": "--version",
"enabled": true,
"install_version": "v1.14.2",
"github": {
"url": "https://github.com/norwoodj/helm-docs",
"api_url": "https://api.github.com/repos/norwoodj/helm-docs",
"parse_release_notes": false,
"asset": "helm-docs_1.14.2_Linux_x86_64.tar.gz",
"asset_type": "package"
}
},
{
"name": "jq",
"binary_name": "jq",
"description": "A lightweight and flexible command-line JSON processor",
"install_type": "github",
"install_version": "jq-1.8.1",
"version_cmd": "--version",
"enabled": true,
"github": {
"url": "https://github.com/jqlang/jq",
"api_url": "https://api.github.com/repos/jqlang/jq",
"parse_release_notes": false,
"asset": "jq-linux-amd64",
"asset_type": "binary"
}
},
{
"name": "kind",
"description": "kind is a tool for running local Kubernetes clusters using Docker container “nodes”.\nkind was primarily designed for testing Kubernetes itself, but may be used for local development or CI",
"binary_name": "kind",
"install_type": "github",
"version_cmd": "--version",
"enabled": true,
"install_version": "v0.30.0",
"github": {
"url": "https://github.com/kubernetes-sigs/kind/",
"api_url": "https://api.github.com/repos/kubernetes-sigs/kind",
"parse_release_notes": false,
"asset": "kind-linux-amd64",
"asset_type": "binary",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "kompose",
"description": "kompose is a tool to help users who are familiar with docker-compose move to Kubernetes. kompose takes a Compose Specification file and translates it into Kubernetes resources",
"binary_name": "kompose",
"install_type": "github",
"version_cmd": "version",
"disable_version_check": false,
"enabled": true,
"install_version": "v1.37.0",
"github": {
"url": "https://github.com/kubernetes/kompose",
"api_url": "https://api.github.com/repos/kubernetes/kompose",
"parse_release_notes": false,
"asset": "kompose-linux-amd64",
"asset_type": "binary"
}
},
{
"name": "kopia",
"description": "Kopia is a fast and secure open-source backup/restore tool that allows you to create encrypted snapshots of your data and save the snapshots to remote or cloud storage of your choice, to network-attached storage or server, or locally on your machine. Kopia does not \u0027image\u0027 your whole machine. Rather, Kopia allows you to backup/restore any and all files/directories that you deem are important or critical.",
"binary_name": "kopia",
"install_type": "github",
"version_cmd": "--version",
"disable_version_check": true,
"enabled": true,
"install_version": "v0.22.0",
"github": {
"url": "https://github.com/kopia/kopia",
"api_url": "https://api.github.com/repos/kopia/kopia",
"parse_release_notes": false,
"asset": "kopia-ui_0.22.0_amd64.deb",
"asset_type": "deb_based",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
}
},
{
"name": "kops",
"description": "The easiest way to get a production grade Kubernetes cluster up and running",
"binary_name": "kops",
"install_type": "github",
"version_cmd": "version",
"disable_version_check": false,
"enabled": true,
"install_version": "v1.34.0",
"github": {
"url": "https://github.com/kubernetes/kops",
"api_url": "https://api.github.com/repos/kubernetes/kops",
"parse_release_notes": false,
"asset": "kops-linux-amd64",
"asset_type": "binary",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
}
},
{
"name": "krew",
"description": "Krew is the plugin manager for kubectl command-line tool. https://krew.sigs.k8s.io/",
"binary_name": "krew",
"install_type": "package",
"version_cmd": "version",
"disable_version_check": false,
"enabled": true,
"install_version": "0.4.5",
"package": {
"link": "https://github.com/kubernetes-sigs/krew/releases/latest/download/krew-linux_amd64.tar.gz",
"after_unpack_install_cmd": {
"flag": true,
"sudo": false,
"cmd": "./krew-linux_amd64 install krew"
},
"after_install_cmd": {
"flag": true,
"sudo": true,
"cmd": "ln -s ~/.krew/bin/kubectl-krew /usr/bin/krew"
}
}
},
{
"name": "kubebuilder",
"description": "Kubebuilder is a framework for building Kubernetes APIs using custom resource definitions (CRDs)",
"binary_name": "kubebuilder",
"install_type": "github",
"version_cmd": "version",
"enabled": true,
"install_version": "v4.10.1",
"github": {
"url": "https://github.com/kubernetes-sigs/kubebuilder",
"api_url": "https://api.github.com/repos/kubernetes-sigs/kubebuilder",
"parse_release_notes": false,
"asset": "kubebuilder_linux_amd64",
"asset_type": "binary",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "kubeconform",
"description": "Kubeconform is a Kubernetes manifest validation tool. Incorporate it into your CI, or use it locally to validate your Kubernetes configuration!",
"binary_name": "kubeconform",
"install_type": "github",
"version_cmd": "-v",
"enabled": true,
"install_version": "v0.6.8",
"github": {
"url": "https://github.com/redacid/kubeconform",
"api_url": "https://api.github.com/repos/redacid/kubeconform",
"asset": "kubeconform-linux-amd64.tar.gz",
"asset_type": "package"
}
},
{
"name": "kubectl",
"description": "The Kubernetes command-line tool, kubectl, allows you to run commands against Kubernetes clusters. You can use kubectl to deploy applications, inspect and manage cluster resources, and view logs. For more information including a complete list of kubectl operations. Check latest stable version https://dl.k8s.io/release/stable.txt",
"binary_name": "kubectl",
"install_type": "package",
"version_cmd": "version --client\u003dtrue",
"disable_version_check": false,
"enabled": true,
"install_version": "1.33.3",
"package": {
"link": "https://dl.k8s.io/release/v1.33.3/bin/linux/amd64/kubectl",
"after_unpack_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
},
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
}
},
{
"name": "kubectx",
"description": "kubectx is a tool to switch between contexts (clusters) on kubectl faster.",
"binary_name": "kubectx",
"install_type": "github",
"version_cmd": "--version",
"enabled": true,
"install_version": "v0.9.5",
"github": {
"url": "https://github.com/ahmetb/kubectx",
"api_url": "https://api.github.com/repos/ahmetb/kubectx",
"parse_release_notes": false,
"asset": "kubectx_v0.9.5_linux_x86_64.tar.gz",
"asset_type": "package"
}
},
{
"name": "kubens",
"description": "kubens is a tool to switch between Kubernetes namespaces (and configure them for kubectl) easily",
"binary_name": "kubens",
"install_type": "github",
"version_cmd": "--version",
"enabled": true,
"install_version": "v0.9.5",
"github": {
"url": "https://github.com/ahmetb/kubectx",
"api_url": "https://api.github.com/repos/ahmetb/kubectx",
"parse_release_notes": false,
"asset": "kubens_v0.9.5_linux_x86_64.tar.gz",
"asset_type": "package"
},
"disable_version_check": false
},
{
"name": "kubeval",
"description": "kubeval is a tool for validating a Kubernetes YAML or JSON configuration file. It does so using schemas generated from the Kubernetes OpenAPI specification, and therefore can validate schemas for multiple versions of Kubernetes",
"binary_name": "kubeval",
"install_type": "github",
"version_cmd": "--version",
"enabled": true,
"install_version": "v0.16.1",
"github": {
"url": "https://github.com/instrumenta/kubeval",
"api_url": "https://api.github.com/repos/instrumenta/kubeval",
"asset": "kubeval-linux-amd64.tar.gz",
"asset_type": "package"
}
},
{
"name": "kustomize",
"description": "kustomize lets you customize raw, template-free YAML files for multiple purposes, leaving the original YAML untouched and usable as is",
"binary_name": "kustomize",
"install_type": "github",
"version_cmd": "version",
"enabled": true,
"install_version": "kustomize/v5.8.0",
"github": {
"url": "https://github.com/kubernetes-sigs/kustomize",
"api_url": "https://api.github.com/repos/kubernetes-sigs/kustomize",
"parse_release_notes": false,
"asset": "kustomize_v5.8.0_linux_amd64.tar.gz",
"asset_type": "package",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "lazydocker",
"description": "A simple terminal UI for both docker and docker-compose, written in Go with the gocui library.",
"binary_name": "lazydocker",
"install_type": "github",
"version_cmd": "--version",
"enabled": true,
"install_version": "v0.24.2",
"github": {
"url": "https://github.com/jesseduffield/lazydocker",
"api_url": "https://api.github.com/repos/jesseduffield/lazydocker",
"parse_release_notes": false,
"asset": "lazydocker_0.24.2_Linux_x86_64.tar.gz",
"asset_type": "package",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "minikube",
"description": "minikube implements a local Kubernetes cluster on macOS, Linux, and Windows. minikube\u0027s primary goals are to be the best tool for local Kubernetes application development and to support all Kubernetes features that fit.",
"binary_name": "minikube",
"install_type": "github",
"version_cmd": "version",
"enabled": true,
"install_version": "v1.37.0",
"github": {
"url": "https://github.com/kubernetes/minikube",
"api_url": "https://api.github.com/repos/kubernetes/minikube",
"parse_release_notes": false,
"asset": "minikube-linux-amd64.tar.gz",
"asset_type": "package",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "pike",
"description": "Pike is a tool to determine the minimum permissions required to run a TF/IAC run",
"binary_name": "pike",
"install_type": "github",
"version_cmd": "--version",
"enabled": true,
"install_version": "v0.3.83",
"github": {
"url": "https://github.com/jameswoolfenden/pike",
"api_url": "https://api.github.com/repos/jameswoolfenden/pike",
"parse_release_notes": false,
"asset": "pike_0.3.83_linux_amd64.tar.gz",
"asset_type": "package",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "pnpm",
"description": "Fast, disk space efficient package manager",
"binary_name": "pnpm",
"install_type": "github",
"version_cmd": "--version",
"disable_version_check": false,
"enabled": true,
"install_version": "v10.22.0",
"github": {
"url": "https://github.com/pnpm/pnpm",
"api_url": "https://api.github.com/repos/pnpm/pnpm",
"parse_release_notes": false,
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
}
},
{
"name": "regbot",
"description": "regclient is a client interface to OCI conformant registries and content shipped with the OCI Image Layout. It includes a Go library and several CLI commands",
"binary_name": "regbot",
"install_type": "github",
"version_cmd": "version",
"enabled": true,
"install_version": "v0.10.0",
"github": {
"url": "https://github.com/regclient/regclient",
"api_url": "https://api.github.com/repos/regclient/regclient",
"parse_release_notes": false,
"asset": "regbot-linux-amd64",
"asset_type": "binary",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "regctl",
"description": "regclient is a client interface to OCI conformant registries and content shipped with the OCI Image Layout. It includes a Go library and several CLI commands",
"binary_name": "regctl",
"install_type": "github",
"version_cmd": "version",
"enabled": true,
"install_version": "v0.10.0",
"github": {
"url": "https://github.com/regclient/regclient",
"api_url": "https://api.github.com/repos/regclient/regclient",
"parse_release_notes": false,
"asset": "regctl-linux-amd64",
"asset_type": "binary",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "regsync",
"description": "regclient is a client interface to OCI conformant registries and content shipped with the OCI Image Layout. It includes a Go library and several CLI commands",
"binary_name": "regsync",
"install_type": "github",
"version_cmd": "version",
"enabled": true,
"install_version": "v0.10.0",
"github": {
"url": "https://github.com/regclient/regclient",
"api_url": "https://api.github.com/repos/regclient/regclient",
"parse_release_notes": false,
"asset": "regsync-linux-amd64",
"asset_type": "binary",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "tabiew",
"description": "Tabiew is a lightweight TUI application that allows users to view and query tabular data files, such as CSV, Parquet, Arrow, and ...",
"binary_name": "tw",
"install_type": "github",
"version_cmd": "--version",
"disable_version_check": false,
"enabled": true,
"install_version": "v0.11.1",
"github": {
"url": "https://github.com/shshemi/tabiew",
"api_url": "https://api.github.com/repos/shshemi/tabiew",
"parse_release_notes": false,
"asset": "tabiew-x86_64-unknown-linux-gnu.deb",
"asset_type": "deb_based",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
}
},
{
"name": "terraform",
"description": "https://developer.hashicorp.com/terraform/install#linux",
"binary_name": "terraform",
"install_type": "package",
"version_cmd": "--version",
"enabled": true,
"install_version": "1.12.2",
"package": {
"link": "https://releases.hashicorp.com/terraform/1.12.2/terraform_1.12.2_linux_amd64.zip",
"after_unpack_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
},
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
},
"disable_version_check": false
},
{
"name": "terraform-docs",
"description": "A utility to generate documentation from Terraform modules in various output formats.",
"binary_name": "terraform-docs",
"install_type": "github",
"version_cmd": "--version",
"disable_version_check": false,
"enabled": true,
"install_version": "v0.20.0",
"github": {
"url": "https://github.com/terraform-docs/terraform-docs",
"api_url": "https://api.github.com/repos/terraform-docs/terraform-docs",
"parse_release_notes": false,
"asset": "terraform-docs-v0.20.0-linux-amd64.tar.gz",
"asset_type": "package",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
}
},
{
"name": "trivy",
"description": "Trivy (pronunciation) is a comprehensive and versatile security scanner. Trivy has scanners that look for security issues, and targets where it can find those issues.",
"binary_name": "trivy",
"install_type": "github",
"version_cmd": "--version",
"disable_version_check": false,
"enabled": true,
"install_version": "v0.67.2",
"github": {
"url": "https://github.com/aquasecurity/trivy",
"api_url": "https://api.github.com/repos/aquasecurity/trivy",
"parse_release_notes": false,
"asset": "trivy_0.67.2_Linux-64bit.deb",
"asset_type": "deb_based",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
}
},
{
"name": "velero",
"description": "Velero (formerly Heptio Ark) gives you tools to back up and restore your Kubernetes cluster resources and persistent volumes. You can run Velero with a public cloud platform or on-premises.",
"binary_name": "velero",
"install_type": "github",
"version_cmd": "version --client-only",
"disable_version_check": false,
"enabled": true,
"install_version": "v1.17.1",
"github": {
"url": "https://github.com/vmware-tanzu/velero",
"api_url": "https://api.github.com/repos/vmware-tanzu/velero",
"parse_release_notes": false,
"asset": "velero-v1.17.1-linux-amd64.tar.gz",
"asset_type": "package",
"after_install_cmd": {
"flag": false,
"sudo": false,
"cmd": ""
}
}
},
{
"name": "yq",
"binary_name": "yq",
"description": "A lightweight and portable command-line YAML, JSON, INI and XML processor",
"install_type": "github",
"install_version": "v4.48.2",
"version_cmd": "--version",
"enabled": true,
"github": {
"url": "https://github.com/mikefarah/yq",
"api_url": "https://api.github.com/repos/mikefarah/yq",
"parse_release_notes": false,
"asset": "yq_linux_amd64",
"asset_type": "binary",
"after_install_cmd": {
"flag": true,
"sudo": true,
"cmd": "ln -s /usr/bin/yq /usr/bin/yq4"
}
},
"disable_version_check": false
}
]
}