forked from aquaproj/aqua-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistry.yaml
26004 lines (26000 loc) · 738 KB
/
registry.yaml
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
---
# Don't edit registry.yaml manually.
# registry.yaml is generated by command "aqua-registry gr".
packages:
- type: github_release
repo_owner: 1xyz
repo_name: pryrite
description: Pryrite, interactively execute shell code blocks in a markdown file
rosetta2: true
asset: pryrite-{{.OS}}-{{.Arch}}-{{.Version}}.zip
supported_envs:
- darwin
- linux
- type: github_release
repo_owner: 99designs
repo_name: aws-vault
description: A vault for securely storing and accessing AWS credentials in development environments
asset: aws-vault-{{.OS}}-{{.Arch}}
format: raw
overrides:
- goos: darwin
format: dmg
asset: aws-vault-{{.OS}}-{{.Arch}}.{{.Format}}
supported_envs:
- linux
- darwin
- windows/arm64
checksum:
type: github_release
asset: SHA256SUMS
algorithm: sha256
version_constraint: semver(">= 6.5.0")
version_overrides:
- version_constraint: semver(">= 6.3.0")
asset: aws-vault-{{.OS}}-{{.Arch}}.{{.Format}}
format: dmg
overrides:
- goos: linux
format: raw
asset: aws-vault-{{.OS}}-{{.Arch}}
supported_envs:
- linux
- darwin
- version_constraint: semver(">= 5.2.0")
asset: aws-vault-{{.OS}}-{{.Arch}}.{{.Format}}
format: dmg
overrides:
- goos: linux
format: raw
asset: aws-vault-{{.OS}}-{{.Arch}}
supported_envs:
- linux
- darwin
rosetta2: true
- version_constraint: semver(">= 5.1.0")
asset: aws-vault-{{.OS}}-{{.Arch}}.{{.Format}}
format: dmg
overrides:
- goos: linux
format: raw
asset: aws-vault-{{.OS}}-{{.Arch}}
supported_envs:
- linux
- darwin
rosetta2: true
checksum:
enabled: false
- version_constraint: semver(">= 4.7.0")
asset: aws-vault-{{.OS}}-{{.Arch}}.{{.Format}}
format: dmg
overrides:
- goos: linux
format: raw
asset: aws-vault-{{.OS}}-{{.Arch}}
supported_envs:
- linux/amd64
- darwin
rosetta2: true
checksum:
enabled: false
- version_constraint: semver(">= 3.5.0")
overrides: []
supported_envs:
- linux/amd64
- darwin
rosetta2: true
checksum:
enabled: false
- version_constraint: semver(">= 3.0.0-dev")
overrides: []
replacements:
amd64: x86_64
darwin: Darwin
supported_envs:
- darwin
rosetta2: true
checksum:
enabled: false
- version_constraint: semver(">= 2.4.0")
overrides: []
replacements:
amd64: x86_64
darwin: Darwin
linux: Linux
supported_envs:
- linux/amd64
- darwin
rosetta2: true
checksum:
enabled: false
- version_constraint: semver(">= 2.3.3")
overrides: []
replacements:
amd64: x86_64
darwin: Darwin
supported_envs:
- darwin
rosetta2: true
checksum:
enabled: false
- version_constraint: semver(">= 2.3.2")
overrides: []
replacements:
amd64: x86_64
darwin: Darwin
linux: Linux
supported_envs:
- linux/amd64
- darwin
rosetta2: true
checksum:
enabled: false
- version_constraint: semver("< 2.3.2")
overrides: []
replacements:
amd64: x86_64
darwin: Darwin
supported_envs:
- darwin
rosetta2: true
checksum:
enabled: false
- type: github_release
repo_owner: Aloxaf
repo_name: silicon
description: Create beautiful image of your source code
asset: silicon-{{.Version}}-{{.Arch}}-{{.OS}}.tar.gz
rosetta2: true
replacements:
darwin: apple-darwin
windows: pc-windows-msvc
linux: unknown-linux-gnu
amd64: x86_64
version_constraint: semver("> 0.5.0")
supported_envs:
- darwin
- amd64
version_overrides:
- version_constraint: semver("= 0.5.0")
supported_envs:
- darwin
- linux/amd64
- version_constraint: "true"
replacements:
darwin: apple-darwin
windows: pc-windows-gnu
linux: unknown-linux-gnu
amd64: x86_64
- type: github_release
repo_owner: Arriven
repo_name: db1000n
description: simple distributed load generation client written in go
format: tar.gz
overrides:
- goos: windows
format: zip
version_constraint: semver(">= 0.8.20")
asset: db1000n_{{.OS}}_{{.Arch}}.{{.Format}}
version_overrides:
- version_constraint: "true"
# https://github.com/Arriven/db1000n/commit/5860df0
# remove version number from goreleaser archives
asset: db1000n_{{trimV .Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
checksum:
type: github_release
asset: db1000n_{{trimV .Version}}_checksums.txt
algorithm: sha256
- type: github_release
repo_owner: Azure
repo_name: aks-engine
description: AKS Engine deploys and manages Kubernetes clusters in Azure
rosetta2: true
supported_envs:
- darwin
- amd64
asset: aks-engine-{{.Version}}-{{.OS}}-{{.Arch}}.tar.gz
files:
- name: aks-engine
src: aks-engine-{{.Version}}-{{.OS}}-{{.Arch}}/aks-engine
- type: github_release
repo_owner: Azure
repo_name: aztfexport
aliases:
- name: Azure/aztfy
description: A tool to bring existing Azure resources under Terraform's management
asset: aztfexport_{{.Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
format: zip
supported_envs:
- darwin
- linux
- amd64
checksum:
type: github_release
asset: aztfexport_SHA256SUMS
algorithm: sha256
version_constraint: semver(">= 0.11.0")
version_overrides:
- version_constraint: semver(">= 0.7.0")
asset: aztfy_{{.Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
files:
- name: aztfy
checksum:
type: github_release
asset: aztfy_SHA256SUMS
algorithm: sha256
- version_constraint: semver(">= 0.0.6")
asset: aztfy_{{.Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
files:
- name: aztfy
checksum:
type: github_release
asset: aztfy_{{.Version}}_SHA256SUMS
algorithm: sha256
- version_constraint: semver("< 0.0.6")
asset: aztfy_{{trimV .Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
format: tar.gz
replacements:
amd64: x86_64
darwin: Darwin
linux: Linux
windows: Windows
files:
- name: aztfy
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: github_release
repo_owner: Azure
repo_name: azure-dev
asset: azd-{{.OS}}-{{.Arch}}.{{.Format}}
format: zip
description: The Azure Developer CLI is a developer-centric command-line interface tool for creating Azure applications
overrides:
- goos: linux
format: tar.gz
files:
- name: azd
src: azd-{{.OS}}-{{.Arch}}
supported_envs:
- darwin
- amd64
rosetta2: true
- type: github_release
repo_owner: Azure
repo_name: draft
asset: draft-{{.OS}}-{{.Arch}}
format: raw
description: A day 0 tool for getting your app on k8s fast
supported_envs:
- darwin
- linux
- amd64
- type: github_release
repo_owner: Azure
repo_name: kubelogin
description: A Kubernetes credential (exec) plugin implementing azure authentication
asset: kubelogin-{{.OS}}-{{.Arch}}.{{.Format}}
format: zip
replacements:
windows: win
files:
- name: kubelogin
src: bin/{{.OS}}_{{.Arch}}/kubelogin
overrides:
- goos: windows
files:
- name: kubelogin
src: bin/windows_{{.Arch}}/kubelogin.exe
checksum:
type: github_release
asset: "{{.Asset}}.sha256"
algorithm: sha256
version_constraint: semver(">= 0.0.27")
version_overrides:
- version_constraint: semver(">= 0.0.11")
supported_envs:
- darwin
- linux
- amd64
- version_constraint: semver(">= 0.0.10")
supported_envs:
- darwin
- amd64
checksum:
enabled: false
- version_constraint: semver(">= 0.0.5")
supported_envs:
- darwin
- amd64
rosetta2: true
checksum:
enabled: false
- version_constraint: semver("< 0.0.5")
asset: kubelogin.zip
supported_envs:
- darwin
- amd64
rosetta2: true
checksum:
enabled: false
- type: github_release
repo_owner: BeryJu
repo_name: korb
description: Move Kubernetes PVCs between Storage Classes and Namespaces
asset: korb_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz
checksum:
type: github_release
asset: korb_{{trimV .Version}}_SHA256SUMS
algorithm: sha256
- type: github_release
repo_owner: BishopFox
repo_name: cloudfox
description: Automating situational awareness for cloud penetration tests
supported_envs:
- darwin
- amd64
asset: cloudfox-{{.OS}}-{{.Arch}}.zip
replacements:
darwin: macos
files:
- name: cloudfox
src: cloudfox/cloudfox
- type: github_release
repo_owner: Builditluc
repo_name: wiki-tui
description: A simple and easy to use Wikipedia Text User Interface
asset: wiki-tui-{{.OS}}.{{.Format}}
format: tar.gz
replacements:
darwin: macos
supported_envs:
- darwin
- amd64
rosetta2: true
checksum:
type: github_release
asset: wiki-tui-{{.OS}}.sha256
algorithm: sha256
overrides:
- goos: windows
checksum:
type: github_release
asset: wiki-tui-{{.OS}}.sha256
algorithm: sha256
version_constraint: semver(">= 0.5.0")
version_overrides:
- version_constraint: semver("< 0.5.0")
asset: wiki-tui-{{.Arch}}-{{.OS}}.{{.Format}}
replacements:
amd64: x86_64
darwin: apple-darwin
linux: unknown-linux-gnu
windows: pc-windows-msvc
checksum:
enabled: false
overrides:
- goos: windows
checksum:
enabled: false
- type: github_release
repo_owner: BurntSushi
repo_name: ripgrep
asset: ripgrep-{{.Version}}-{{.Arch}}-{{.OS}}.{{.Format}}
description: ripgrep recursively searches directories for a regex pattern while respecting your gitignore
rosetta2: true
supported_envs:
- darwin
- amd64
replacements:
amd64: x86_64
darwin: apple-darwin
linux: unknown-linux-musl
windows: pc-windows-msvc
format: tar.gz
overrides:
- goos: windows
format: zip
files:
- name: rg
src: ripgrep-{{.Version}}-{{.Arch}}-{{.OS}}/rg
- type: github_release
repo_owner: Byron
repo_name: dua-cli
description: View disk space usage and delete unwanted data, fast
asset: dua-{{.Version}}-{{.Arch}}-{{.OS}}.{{.Format}}
files:
- name: dua
src: dua-{{.Version}}-{{.Arch}}-{{.OS}}/dua
format: tar.gz
overrides:
- goos: windows
format: zip
replacements:
amd64: x86_64
darwin: apple-darwin
linux: unknown-linux-musl
windows: pc-windows-msvc
supported_envs:
- darwin
- amd64
rosetta2: true
version_constraint: semver(">= 2.20.1")
version_overrides:
- version_constraint: semver(">= 2.20.0")
format: zip
overrides:
- goos: darwin
format: tar.gz
replacements:
amd64: x86_64
darwin: apple-darwin
windows: pc-windows-msvc
supported_envs:
- darwin
- windows/amd64
- version_constraint: semver(">= 2.10.4")
- version_constraint: semver(">= 2.10.3")
overrides: []
- version_constraint: semver(">= 2.6.0")
- version_constraint: semver("< 2.6.0")
files:
- name: dua
overrides: []
replacements:
amd64: x86_64
darwin: apple-darwin
linux: unknown-linux-musl
supported_envs:
- linux/amd64
- darwin
- type: github_release
repo_owner: Cian911
repo_name: switchboard
asset: switchboard_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz
description: Auto-magic file organisation for your machines
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: github_release
repo_owner: CircleCI-Public
repo_name: circleci-cli
description: Use CircleCI from the command line
rosetta2: true
asset: circleci-cli_{{trimV .Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
supported_envs:
- darwin
- linux
- amd64
format: tar.gz
overrides:
- goos: windows
format: zip
files:
- name: circleci
src: circleci-cli_{{trimV .Version}}_{{.OS}}_{{.Arch}}/circleci
version_constraint: semver(">= 0.1.17554")
version_overrides:
- version_constraint: "true"
supported_envs:
- darwin
- amd64
checksum:
type: github_release
asset: circleci-cli_{{trimV .Version}}_checksums.txt
algorithm: sha256
- type: github_release
repo_owner: ClementTsang
repo_name: bottom
description: Yet another cross-platform graphical process/system monitor
supported_envs:
- darwin
- linux
- amd64
asset: bottom_{{.Arch}}-{{.OS}}.{{.Format}}
format: tar.gz
overrides:
- goos: windows
format: zip
- goos: linux
goarch: arm64
replacements:
linux: unknown-linux-gnu
replacements:
amd64: x86_64
arm64: aarch64
darwin: apple-darwin
linux: unknown-linux-musl
windows: pc-windows-msvc
386: i686
rosetta2: true
files:
- name: btm
- type: github_release
repo_owner: Code-Hex
repo_name: gqldoc
description: The easiest way to make API documents for GraphQL
asset: gqldoc_{{trimV .Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
format: tar.gz
overrides:
- goos: windows
format: zip
replacements:
amd64: x86_64
darwin: macOS
linux: Linux
windows: Windows
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
version_constraint: semver(">= 0.0.5")
version_overrides:
- version_constraint: semver("< 0.0.5")
supported_envs:
- darwin
- linux
- amd64
- type: github_release
repo_owner: CycloneDX
repo_name: cyclonedx-cli
asset: cyclonedx-{{.OS}}-{{.Arch}}
format: raw
description: CycloneDX CLI tool for SBOM analysis, merging, diffs and format conversions
replacements:
amd64: x64
darwin: osx
windows: win
files:
- name: cyclonedx
- type: github_release
repo_owner: DelineaXPM
repo_name: dsv-cli
aliases:
- name: thycotic/dsv-cli
link: https://docs.delinea.com/dsv/current/cli-ref
description: Delinea DevOps Secrets Vault is a secret vault automation tool for the management of credentials for applications, databases, CI/CD tools, and services
search_words:
- secrets
- vault
files:
- name: dsv
supported_envs:
- darwin
- amd64
asset: dsv-{{.OS}}-{{.Arch}}
format: raw
replacements:
amd64: x64
windows: win
version_constraint: semver(">= 1.39.9")
checksum:
type: github_release
asset: checksums-sha256.txt
algorithm: sha256
version_overrides:
- version_constraint: semver(">= 1.39.5")
checksum:
enabled: false
- version_constraint: semver(">= 1.39.1")
checksum:
enabled: false
replacements:
windows: win
- version_constraint: semver(">= 1.33.0")
checksum:
enabled: false
- version_constraint: "true"
rosetta2: true
checksum:
enabled: false
- type: github_release
repo_owner: Dreamacro
repo_name: clash
asset: clash-{{.OS}}-{{.Arch}}-{{.Version}}.{{.Format}}
supported_envs:
- windows
- darwin
- linux/amd64
description: A rule-based tunnel in Go
format: gz
files:
- name: clash
src: clash-{{.OS}}-{{.Arch}}-{{.Version}}
overrides:
- goos: windows
format: zip
files:
- name: clash
src: clash-windows-{{.Arch}}.exe
- type: github_release
repo_owner: EdenEast
repo_name: repo
asset: repo-{{.Arch}}-{{.OS}}.{{.Format}}
format: tar.gz
description: Repository Management utility
replacements:
amd64: x86_64
darwin: apple-darwin
linux: unknown-linux-musl
windows: pc-windows-msvc
overrides:
- goos: windows
format: zip
supported_envs:
- darwin
- amd64
rosetta2: true
checksum:
type: github_release
asset: "{{.Asset}}.sha256"
algorithm: sha256
- type: github_release
repo_owner: FairwindsOps
repo_name: gonogo
description: Tool to evaluate upgrade confidence for Kubernetes cluster addons
asset: gonogo_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: github_release
repo_owner: FairwindsOps
repo_name: nova
asset: nova_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz
description: Find outdated or deprecated Helm charts running in your cluster
supported_envs:
- darwin
- linux
- windows/amd64
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: github_release
repo_owner: FairwindsOps
repo_name: pluto
asset: pluto_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz
description: A cli tool to help discover deprecated apiVersions in Kubernetes
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: github_release
repo_owner: FairwindsOps
repo_name: polaris
asset: polaris_{{.OS}}_{{.Arch}}.tar.gz
description: Validation of best practices in your Kubernetes clusters
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: github_release
repo_owner: FairwindsOps
repo_name: rbac-lookup
asset: rbac-lookup_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz
description: Easily find roles and cluster roles attached to any user, service account, or group name in your Kubernetes cluster
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: github_release
repo_owner: FiloSottile
repo_name: age
description: A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability
supported_envs:
- darwin
- linux
- amd64
format: tar.gz
overrides:
- goos: windows
format: zip
asset: age-{{.Version}}-{{.OS}}-{{.Arch}}.{{.Format}}
files:
- name: age
src: age/age
- name: age-keygen
src: age/age-keygen
- type: github_release
repo_owner: FiloSottile
repo_name: mkcert
format: raw
rosetta2: true
asset: mkcert-{{.Version}}-{{.OS}}-{{.Arch}}
description: A simple zero-config tool to make locally trusted development certificates with any names you'd like
- type: github_release
repo_owner: GoTestTools
repo_name: gotestfmt
asset: gotestfmt_{{trimV .Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
format: tar.gz
description: go test output for humans
overrides:
- goos: windows
format: zip
supported_envs:
- darwin
- linux
- amd64
checksum:
type: github_release
asset: gotestfmt_{{trimV .Version}}_checksums.txt
algorithm: sha256
- type: github_release
repo_owner: GoodwayGroup
repo_name: gwvault
description: ansible-vault CLI reimplemented in go
supported_envs:
- darwin
- linux
- amd64
asset: gwvault_{{trimV .Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
files:
- name: gwvault
src: gwvault_{{trimV .Version}}_{{.OS}}_{{.Arch}}/gwvault
format: tar.gz
overrides:
- goos: windows
format: zip
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: github_release
repo_owner: GoogleCloudPlatform
repo_name: berglas
asset: berglas_{{trimV .Version}}_{{.OS}}_{{.Arch}}.{{.Format}}
format: tar.gz
description: A tool for managing secrets on Google Cloud
overrides:
- goos: windows
format: zip
checksum:
type: github_release
asset: berglas_{{trimV .Version}}_SHA512SUMS
algorithm: sha512
- type: http
repo_owner: GoogleCloudPlatform
repo_name: cloud-sql-proxy
description: A utility for connecting securely to your Cloud SQL instances
format: raw
supported_envs:
- darwin
- linux
- windows/amd64
version_constraint: semver(">= 2.0.0")
url: https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy/{{.Version}}/cloud-sql-proxy.{{.OS}}.{{.Arch}}
overrides:
- goos: windows
url: https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy/{{.Version}}/cloud-sql-proxy.x64.exe
version_overrides:
- version_constraint: "true"
url: https://storage.googleapis.com/cloudsql-proxy/{{.Version}}/cloud_sql_proxy.{{.OS}}.{{.Arch}}
overrides:
- goos: windows
url: https://storage.googleapis.com/cloudsql-proxy/{{.Version}}/cloud_sql_proxy_x64.exe
- type: github_release
repo_owner: GoogleCloudPlatform
repo_name: terraformer
description: CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastructure to Code
supported_envs:
- darwin
- amd64
complete_windows_ext: false
asset: terraformer-all-{{.OS}}-{{.Arch}}
files:
- name: terraformer
src: terraformer-all-{{.OS}}-{{.Arch}}
- name: GoogleCloudPlatform/terraformer/aws
description: CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastructure to Code
type: github_release
repo_owner: GoogleCloudPlatform
repo_name: terraformer
supported_envs:
- darwin
- amd64
rosetta2: true
asset: terraformer-aws-{{.OS}}-{{.Arch}}
files:
- name: terraformer
src: terraformer-aws-{{.OS}}-{{.Arch}}
- type: http
repo_owner: GoogleContainerTools
repo_name: container-diff
url: https://storage.googleapis.com/container-diff/{{.Version}}/container-diff-{{.OS}}-amd64
description: "container-diff: Diff your Docker containers"
files:
- name: container-diff
src: container-diff-{{.OS}}-amd64
- type: http
repo_owner: GoogleContainerTools
repo_name: container-structure-test
rosetta2: true
url: https://storage.googleapis.com/container-structure-test/{{.Version}}/container-structure-test-{{.OS}}-{{.Arch}}
description: validate the structure of your container images
files:
- name: container-structure-test
src: container-structure-test-{{.OS}}-{{.Arch}}
supported_envs:
- darwin
- linux
- windows/amd64
- type: github_release
repo_owner: GoogleContainerTools
repo_name: kpt
description: A Git-native, schema-aware, extensible client-side tool for packaging, customizing, validating, and applying Kubernetes resources
asset: kpt_{{.OS}}_{{.Arch}}
supported_envs:
- darwin
- linux
files:
- name: kpt
src: kpt_{{.OS}}_{{.Arch}}
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: http
repo_owner: GoogleContainerTools
repo_name: skaffold
description: Easy and Repeatable Kubernetes Development
url: https://storage.googleapis.com/skaffold/releases/{{.Version}}/skaffold-{{.OS}}-{{.Arch}}
files:
- name: skaffold
src: skaffold-{{.OS}}-{{.Arch}}
supported_envs:
- darwin
- linux
- amd64
- type: github_release
repo_owner: JanDeDobbeleer
repo_name: oh-my-posh
asset: posh-{{.OS}}-{{.Arch}}
format: raw
description: A prompt theme engine for any shell
checksum:
type: github_release
asset: "{{.Asset}}.sha256"
algorithm: sha256
- type: github_release
repo_owner: JohnnyMorganz
repo_name: StyLua
description: An opinionated Lua code formatter
asset: stylua-{{.OS}}-{{.Arch}}.{{.Format}}
format: zip
overrides:
- goos: windows
replacements:
arm64: arm64
replacements:
amd64: x86_64
arm64: aarch64
darwin: macos
supported_envs:
- darwin
- linux
- amd64
files:
- name: stylua
version_constraint: semver(">= 0.15.0")
version_overrides:
- version_constraint: semver(">= 0.14.0")
asset: stylua-{{.OS}}.{{.Format}}
overrides:
- goos: darwin
goarch: arm64
asset: stylua-{{.OS}}-{{.Arch}}.{{.Format}}
replacements:
arm64: aarch64
replacements:
darwin: macos
windows: win64
supported_envs:
- darwin
- amd64
- version_constraint: semver(">= 0.13.0")
asset: stylua-{{.OS}}.{{.Format}}
overrides: []
replacements:
darwin: macos
windows: win64
supported_envs:
- darwin
- amd64
rosetta2: true
- version_constraint: semver("< 0.13.0")
asset: stylua-{{trimV .Version}}-{{.OS}}.{{.Format}}
overrides: []
replacements:
darwin: macos
windows: win64
supported_envs:
- darwin
- amd64
rosetta2: true
- type: github_release
repo_owner: Kampfkarren
repo_name: selene
description: A blazing-fast modern Lua linter written in Rust
replacements:
darwin: macos
supported_envs:
- darwin
- amd64
rosetta2: true
version_constraint: semver(">= 0.6.0")
asset: selene-{{.Version}}-{{.OS}}.zip
version_overrides:
- version_constraint: semver(">= 0.4.3")
asset: selene-{{.OS}}
replacements:
darwin: osx
overrides:
- goos: windows
asset: selene.exe
- version_constraint: "true"
asset: selene
supported_envs:
- linux/amd64
- windows/amd64
overrides:
- goos: windows
asset: selene.exe
- name: Kampfkarren/selene/light
type: github_release
repo_owner: Kampfkarren
repo_name: selene
asset: selene-light-{{.Version}}-{{.OS}}.zip
description: A blazing-fast modern Lua linter written in Rust
replacements:
darwin: macos
supported_envs:
- darwin
- amd64
rosetta2: true
files:
- name: selene
- type: github_release
repo_owner: Kong
repo_name: deck
description: "decK: Configuration management and drift detection for Kong"
asset: deck_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz
supported_envs:
- darwin
- linux
- amd64
version_constraint: semver(">= 1.11.0")
overrides:
- goos: darwin
asset: deck_{{trimV .Version}}_{{.OS}}_all.tar.gz
version_overrides:
- version_constraint: "true"
overrides: []
checksum:
type: github_release
asset: checksums.txt
algorithm: sha256
- type: github_release
repo_owner: LGUG2Z
repo_name: komorebi
asset: komorebi-{{trimV .Version}}-{{.Arch}}-{{.OS}}.zip
description: A tiling window manager for Windows
replacements:
amd64: x86_64
windows: pc-windows-msvc
supported_envs:
- windows/amd64