-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcatalog.json
More file actions
1361 lines (1361 loc) · 53.3 KB
/
Copy pathcatalog.json
File metadata and controls
1361 lines (1361 loc) · 53.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
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
{
"org": "rtvkiz",
"registry": "ghcr.io",
"prefix": "minimal-",
"categories": [
"Languages & Runtimes",
"Databases",
"Caches, Queues & Messaging",
"Web Servers & Proxies",
"Observability",
"Infrastructure",
"Kubernetes, CI & IaC",
"Apps"
],
"images": [
{
"name": "python",
"category": "Languages & Runtimes",
"variants": [
"prod",
"dev"
],
"primary_package": "python-3",
"upstream_url": "https://www.python.org",
"summary": "Shell-less Python 3 runtime built on Wolfi.",
"description": "CPython 3 runtime for running Python services in production. No shell and no package manager in the image, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "node-slim",
"category": "Languages & Runtimes",
"variants": [
"prod",
"dev"
],
"primary_package": "nodejs",
"upstream_url": "https://nodejs.org",
"summary": "Shell-less Node.js runtime built on Wolfi.",
"description": "Node.js JavaScript runtime for server-side apps and APIs. Shipped without a shell or package manager, cosign-signed, and rebuilt every 6 hours from Wolfi."
},
{
"name": "bun",
"category": "Languages & Runtimes",
"variants": [
"prod",
"dev"
],
"primary_package": "bun",
"upstream_url": "https://bun.sh",
"summary": "Shell-less Bun JavaScript runtime built on Wolfi.",
"description": "Bun, the fast all-in-one JavaScript runtime and bundler. Shell-less image with no package manager, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "go",
"category": "Languages & Runtimes",
"variants": [
"prod",
"dev"
],
"primary_package": "go",
"upstream_url": "https://go.dev",
"summary": "Go builder image built on Wolfi.",
"description": "Go toolchain image for compiling Go services in CI and multi-stage builds. Tracks upstream Go releases, cosign-signed with SLSA v1.0 build provenance."
},
{
"name": "java",
"category": "Languages & Runtimes",
"variants": [
"prod",
"dev"
],
"primary_package": "openjdk-21",
"upstream_url": "https://openjdk.org",
"summary": "Shell-less OpenJDK 21 JRE built on Wolfi.",
"description": "OpenJDK 21 JRE for running JVM services. No shell and no package manager, cosign-signed with SBOM attestations, rebuilt every 6 hours against CVE fixes."
},
{
"name": "ruby",
"category": "Languages & Runtimes",
"variants": [
"prod",
"dev"
],
"primary_package": "ruby",
"upstream_url": "https://www.ruby-lang.org",
"summary": "Ruby runtime built from source via melange.",
"description": "Ruby interpreter for running Rack, Sinatra and Rails workloads. Compiled from upstream source, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "php",
"category": "Languages & Runtimes",
"variants": [
"prod",
"dev"
],
"primary_package": "php",
"upstream_url": "https://www.php.net",
"summary": "PHP runtime built from source via melange.",
"description": "PHP runtime for web applications and CLI scripts. Compiled from upstream source with a minimal extension set, cosign-signed and rebuilt every 6 hours."
},
{
"name": "dotnet",
"category": "Languages & Runtimes",
"variants": [
"prod",
"dev"
],
"primary_package": "dotnet-runtime",
"upstream_url": "https://dotnet.microsoft.com",
"summary": ".NET runtime built on Wolfi.",
"description": ".NET runtime for running compiled C# and F# services. Minimal Wolfi base with no shell, signed and SBOM-attested, rebuilt every 6 hours against CVE fixes."
},
{
"name": "deno",
"category": "Languages & Runtimes",
"variants": [
"prod",
"dev"
],
"primary_package": "deno",
"upstream_url": "https://deno.com",
"summary": "Shell-less Deno TypeScript runtime built on Wolfi.",
"description": "Deno, the secure TypeScript and JavaScript runtime with sandboxed permissions. Shell-less image, cosign-signed with SLSA build provenance, rebuilt 6-hourly."
},
{
"name": "mysql",
"category": "Databases",
"variants": [
"prod",
"dev"
],
"primary_package": "mysql",
"upstream_url": "https://www.mysql.com",
"summary": "MySQL LTS built from source via melange.",
"description": "MySQL LTS relational database server. Compiled from upstream source against current Wolfi libraries, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "mariadb",
"category": "Databases",
"variants": [
"prod",
"dev"
],
"primary_package": "mariadb",
"upstream_url": "https://mariadb.org",
"summary": "MariaDB LTS built from source via melange.",
"description": "MariaDB LTS relational database, a drop-in MySQL alternative. Built from upstream source, cosign-signed with SBOM attestations and 6-hourly CVE rebuilds."
},
{
"name": "postgres-slim",
"category": "Databases",
"variants": [
"prod",
"dev"
],
"primary_package": "postgresql",
"upstream_url": "https://www.postgresql.org",
"summary": "PostgreSQL built on Wolfi.",
"description": "PostgreSQL relational database server, slimmed to the runtime essentials. No shell, cosign-signed and SBOM-attested, rebuilt every 6 hours from Wolfi."
},
{
"name": "patroni",
"category": "Databases",
"variants": [
"prod",
"dev"
],
"primary_package": "patroni",
"upstream_url": "https://patroni.readthedocs.io",
"summary": "Shell-less Patroni PostgreSQL high-availability supervisor built on Wolfi.",
"description": "Patroni supervisor for PostgreSQL high availability with automatic failover. Shell-less, signed and SBOM-attested, rebuilt every 6 hours against CVE fixes."
},
{
"name": "pgbouncer",
"category": "Databases",
"variants": [
"prod",
"dev"
],
"primary_package": "pgbouncer",
"upstream_url": "https://www.pgbouncer.org",
"summary": "Shell-less PgBouncer PostgreSQL connection pooler built from source via melange.",
"description": "PgBouncer lightweight connection pooler for PostgreSQL. Built from upstream source, shell-less and non-root ready, signed and rebuilt every 6 hours."
},
{
"name": "unbound",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "unbound",
"upstream_url": "https://www.nlnetlabs.nl/projects/unbound/",
"summary": "Shell-less Unbound validating recursive DNS resolver built from source via melange.",
"description": "Unbound validating, recursive, caching DNS resolver with DNSSEC. Compiled from source, shell-less, cosign-signed and rebuilt every 6 hours against CVE fixes."
},
{
"name": "dnsmasq",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "dnsmasq",
"upstream_url": "https://thekelleys.org.uk/dnsmasq/doc.html",
"summary": "Shell-less dnsmasq DNS forwarder/cache and DHCP server built on Wolfi.",
"description": "dnsmasq lightweight DNS forwarder, cache and DHCP server for small networks. Shell-less image, signed and SBOM-attested, rebuilt every 6 hours from Wolfi."
},
{
"name": "keepalived",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "keepalived",
"upstream_url": "https://www.keepalived.org/",
"summary": "Shell-less Keepalived VRRP failover and LVS load balancer built from source via melange.",
"description": "Keepalived VRRP failover and LVS load balancing for high-availability clusters. Built from source, shell-less, signed and rebuilt every 6 hours."
},
{
"name": "external-dns",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "external-dns",
"upstream_url": "https://kubernetes-sigs.github.io/external-dns/",
"summary": "Shell-less ExternalDNS Kubernetes DNS controller built from source via melange.",
"description": "ExternalDNS controller syncing Kubernetes Services and Ingresses to your DNS provider. Shell-less Go binary, signed with SLSA provenance, rebuilt 6-hourly."
},
{
"name": "velero",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "velero",
"upstream_url": "https://velero.io",
"summary": "Shell-less Velero Kubernetes backup and restore tool built from source via melange.",
"description": "Velero backup, restore and migration for Kubernetes clusters and persistent volumes. Shell-less, cosign-signed with SBOM attestations, rebuilt every 6 hours."
},
{
"name": "kaniko",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "kaniko",
"upstream_url": "https://github.com/GoogleContainerTools/kaniko",
"summary": "Shell-less Kaniko container image builder (executor) built from source via melange.",
"description": "Kaniko executor for building container images inside Kubernetes without a Docker daemon. Shell-less, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "step-ca",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "step-ca",
"upstream_url": "https://smallstep.com/docs/step-ca/",
"summary": "Shell-less step-ca online certificate authority built from source via melange.",
"description": "step-ca online certificate authority issuing short-lived X.509 and SSH certificates. Built from source, shell-less, signed and rebuilt every 6 hours."
},
{
"name": "skopeo",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "skopeo",
"upstream_url": "https://github.com/containers/skopeo",
"summary": "Shell-less Skopeo container image inspection/copy tool built from source via melange.",
"description": "Skopeo for inspecting, copying and signing container images between registries. Shell-less Go binary, cosign-signed with SLSA provenance, rebuilt 6-hourly."
},
{
"name": "sqlite",
"category": "Databases",
"variants": [
"prod",
"dev"
],
"primary_package": "sqlite",
"upstream_url": "https://www.sqlite.org",
"summary": "Shell-less SQLite built on Wolfi.",
"description": "SQLite embedded SQL database engine and CLI shell. Minimal Wolfi base with no package manager, cosign-signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "opensearch",
"category": "Databases",
"variants": [
"prod",
"dev"
],
"primary_package": "opensearch",
"upstream_url": "https://opensearch.org",
"summary": "OpenSearch 3.x on Wolfi with OpenJDK 21.",
"description": "OpenSearch 3.x search and analytics engine on OpenJDK 21. Apache 2.0 licensed, cosign-signed with SBOM attestations, rebuilt every 6 hours against CVE fixes."
},
{
"name": "redis-slim",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "redis",
"upstream_url": "https://redis.io",
"summary": "Shell-less Redis built from source via melange.",
"description": "Redis in-memory data store for caching, queues and pub/sub. Compiled from upstream source, shell-less, signed and rebuilt every 6 hours against CVE fixes."
},
{
"name": "valkey",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "valkey",
"upstream_url": "https://valkey.io",
"summary": "Shell-less Valkey built from source via melange.",
"description": "Valkey in-memory data store, the BSD-licensed Redis fork. Built from upstream source, shell-less, cosign-signed and rebuilt every 6 hours against CVE fixes."
},
{
"name": "memcached",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "memcached",
"upstream_url": "https://memcached.org",
"summary": "Shell-less Memcached built from source via melange.",
"description": "Memcached distributed memory object caching system. Compiled from upstream source, shell-less, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "kafka",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "kafka",
"upstream_url": "https://kafka.apache.org",
"summary": "Apache Kafka with custom jlink JRE, KRaft mode.",
"description": "Apache Kafka event streaming platform in KRaft mode, no ZooKeeper required. Custom jlink JRE trims the runtime; signed, SBOM-attested and rebuilt 6-hourly."
},
{
"name": "zookeeper",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "zookeeper",
"upstream_url": "https://zookeeper.apache.org",
"summary": "Apache ZooKeeper coordination service with custom jlink JRE.",
"description": "Apache ZooKeeper coordination service for distributed configuration and leader election. Custom jlink JRE, cosign-signed, rebuilt every 6 hours."
},
{
"name": "cassandra",
"category": "Databases",
"variants": [
"prod",
"dev"
],
"primary_package": "cassandra",
"upstream_url": "https://cassandra.apache.org",
"summary": "Apache Cassandra wide-column database with custom jlink JRE.",
"description": "Apache Cassandra distributed wide-column database for high-write workloads. Runs on a custom jlink JRE, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "solr",
"category": "Databases",
"variants": [
"prod",
"dev"
],
"primary_package": "solr",
"upstream_url": "https://solr.apache.org",
"summary": "Apache Solr search server with custom jlink JRE.",
"description": "Apache Solr enterprise search platform built on Lucene. Custom jlink JRE keeps the runtime small; cosign-signed with SBOM attestations and 6-hourly rebuilds."
},
{
"name": "flink",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "flink",
"upstream_url": "https://flink.apache.org",
"summary": "Hardened Apache Flink stream processing engine with a custom jlink JRE.",
"description": "Apache Flink stateful stream processing engine for real-time pipelines. Custom jlink JRE, cosign-signed with SBOM attestations, rebuilt every 6 hours."
},
{
"name": "pulsar",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "pulsar",
"upstream_url": "https://pulsar.apache.org",
"summary": "Apache Pulsar messaging and streaming server with custom jlink JRE.",
"description": "Apache Pulsar distributed messaging and event streaming with tiered storage. Runs on a custom jlink JRE, signed and rebuilt every 6 hours against CVE fixes."
},
{
"name": "tomcat",
"category": "Web Servers & Proxies",
"variants": [
"prod",
"dev"
],
"primary_package": "tomcat",
"upstream_url": "https://tomcat.apache.org",
"summary": "Hardened Apache Tomcat servlet container with custom jlink JRE (default webapps removed).",
"description": "Apache Tomcat servlet container with the default webapps removed. Custom jlink JRE, cosign-signed with SBOM attestations, rebuilt every 6 hours."
},
{
"name": "rabbitmq",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "rabbitmq",
"upstream_url": "https://www.rabbitmq.com",
"summary": "RabbitMQ with Wolfi Erlang/OTP.",
"description": "RabbitMQ message broker speaking AMQP, MQTT and STOMP. Built on Wolfi Erlang/OTP, cosign-signed with SBOM attestations, rebuilt every 6 hours."
},
{
"name": "nats",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "nats-server",
"upstream_url": "https://nats.io",
"summary": "Shell-less NATS server built from source via melange.",
"description": "NATS server for high-throughput cloud-native messaging and JetStream persistence. Shell-less Go binary, signed with SLSA provenance, rebuilt every 6 hours."
},
{
"name": "mosquitto",
"category": "Caches, Queues & Messaging",
"variants": [
"prod",
"dev"
],
"primary_package": "mosquitto",
"upstream_url": "https://mosquitto.org",
"summary": "Shell-less Eclipse Mosquitto MQTT broker.",
"description": "Eclipse Mosquitto MQTT broker for IoT and device messaging. Shell-less, compiled from upstream source, signed and rebuilt every 6 hours against CVE fixes."
},
{
"name": "nginx",
"category": "Web Servers & Proxies",
"variants": [
"prod",
"dev"
],
"primary_package": "nginx-mainline",
"upstream_url": "https://nginx.org",
"summary": "Shell-less Nginx built on Wolfi.",
"description": "Nginx web server, reverse proxy and load balancer on the mainline branch. No shell or package manager, cosign-signed and rebuilt every 6 hours from Wolfi."
},
{
"name": "httpd",
"category": "Web Servers & Proxies",
"variants": [
"prod",
"dev"
],
"primary_package": "apache2",
"upstream_url": "https://httpd.apache.org",
"summary": "Apache HTTP Server built on Wolfi.",
"description": "Apache HTTP Server for static sites, reverse proxying and mod_* workloads. Minimal Wolfi base, cosign-signed with SBOM attestations, rebuilt every 6 hours."
},
{
"name": "caddy",
"category": "Web Servers & Proxies",
"variants": [
"prod",
"dev"
],
"primary_package": "caddy",
"upstream_url": "https://caddyserver.com",
"summary": "Shell-less Caddy web server built from source via melange.",
"description": "Caddy web server with automatic HTTPS and Let's Encrypt certificates. Shell-less Go binary built from source, signed and rebuilt every 6 hours."
},
{
"name": "haproxy",
"category": "Web Servers & Proxies",
"variants": [
"prod",
"dev"
],
"primary_package": "haproxy",
"upstream_url": "https://www.haproxy.org",
"summary": "Shell-less HAProxy built from source via melange.",
"description": "HAProxy TCP and HTTP load balancer for high-traffic sites. Compiled from upstream source, shell-less, cosign-signed and rebuilt every 6 hours against CVEs."
},
{
"name": "traefik",
"category": "Web Servers & Proxies",
"variants": [
"prod",
"dev"
],
"primary_package": "traefik",
"upstream_url": "https://traefik.io",
"summary": "Shell-less Traefik reverse proxy built from source via melange.",
"description": "Traefik cloud-native reverse proxy with automatic service discovery and TLS. Shell-less, signed with SLSA build provenance, rebuilt every 6 hours."
},
{
"name": "envoy",
"category": "Web Servers & Proxies",
"variants": [
"prod",
"dev"
],
"primary_package": "envoy",
"upstream_url": "https://www.envoyproxy.io",
"summary": "Shell-less Envoy proxy.",
"description": "Envoy L7 proxy and service-mesh data plane with gRPC and observability built in. Shell-less image, cosign-signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "dex",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "dex",
"upstream_url": "https://dexidp.io/",
"summary": "Shell-less Dex OpenID Connect identity provider, built from source via melange.",
"description": "Dex OpenID Connect identity provider federating LDAP, SAML and GitHub logins. Shell-less Go binary, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "seaweedfs",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "seaweedfs",
"upstream_url": "https://seaweedfs.com/",
"summary": "Shell-less SeaweedFS distributed object store and filesystem, built from source via melange.",
"description": "SeaweedFS distributed object store and filesystem for billions of small files. Shell-less, built from source, signed and rebuilt every 6 hours."
},
{
"name": "rclone",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "rclone",
"upstream_url": "https://rclone.org/",
"summary": "Shell-less rclone cloud storage sync tool (70+ object-store and cloud-drive backends), built from source via melange.",
"description": "rclone syncing files across 70+ object stores and cloud drives. Shell-less Go binary built from source, cosign-signed and rebuilt every 6 hours."
},
{
"name": "restic",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "restic",
"upstream_url": "https://restic.net/",
"summary": "Shell-less restic deduplicating, encrypted backup program, built from source via melange.",
"description": "restic fast, deduplicating, encrypted backup program for servers and volumes. Shell-less, built from source, signed and rebuilt every 6 hours against CVEs."
},
{
"name": "tailscale",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "tailscale",
"upstream_url": "https://tailscale.com/",
"summary": "Shell-less Tailscale WireGuard mesh VPN (tailscaled daemon + CLI), built from source via melange.",
"description": "Tailscale WireGuard mesh VPN with the tailscaled daemon and CLI. Shell-less Go build from source, cosign-signed with SLSA provenance, rebuilt 6-hourly."
},
{
"name": "descheduler",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "descheduler",
"upstream_url": "https://github.com/kubernetes-sigs/descheduler",
"summary": "Shell-less Kubernetes descheduler, built from source via melange.",
"description": "Kubernetes descheduler evicting pods to rebalance nodes against your policies. Shell-less Go binary, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "kube-vip",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "kube-vip",
"upstream_url": "https://kube-vip.io/",
"summary": "Shell-less kube-vip control-plane VIP and load balancer, built from source via melange.",
"description": "kube-vip providing a control-plane virtual IP and service load balancer for Kubernetes. Shell-less, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "oauth2-proxy",
"category": "Web Servers & Proxies",
"variants": [
"prod",
"dev"
],
"primary_package": "oauth2-proxy",
"upstream_url": "https://oauth2-proxy.github.io/oauth2-proxy/",
"summary": "Shell-less OAuth2 Proxy (OIDC/OAuth2 authenticating reverse proxy), built from source via melange.",
"description": "OAuth2 Proxy adding OIDC and OAuth2 authentication in front of any upstream app. Shell-less Go binary, signed with SLSA provenance, rebuilt 6-hourly."
},
{
"name": "prometheus",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "prometheus",
"upstream_url": "https://prometheus.io",
"summary": "Prometheus monitoring server built from source via melange.",
"description": "Prometheus monitoring server scraping and storing time-series metrics with PromQL. Built from source, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "alertmanager",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "alertmanager",
"upstream_url": "https://prometheus.io/docs/alerting/latest/alertmanager/",
"summary": "Prometheus Alertmanager built from source via melange.",
"description": "Prometheus Alertmanager handling alert dedup, grouping, silencing and routing. Built from upstream source, cosign-signed, rebuilt every 6 hours."
},
{
"name": "victoria-metrics",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "victoria-metrics",
"upstream_url": "https://victoriametrics.com",
"summary": "VictoriaMetrics time-series database built from source via melange.",
"description": "VictoriaMetrics fast time-series database and Prometheus long-term storage. Built from source, signed with SLSA provenance, rebuilt every 6 hours."
},
{
"name": "thanos",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "thanos",
"upstream_url": "https://thanos.io",
"summary": "Shell-less Thanos HA Prometheus long-term storage.",
"description": "Thanos adding HA, global query and unlimited retention to Prometheus via object storage. Shell-less, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "mimir",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "mimir",
"upstream_url": "https://grafana.com/oss/mimir/",
"summary": "Grafana Mimir long-term Prometheus storage.",
"description": "Grafana Mimir horizontally scalable long-term Prometheus storage. Built from source, cosign-signed with SBOM attestations, rebuilt every 6 hours."
},
{
"name": "jaeger",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "jaeger",
"upstream_url": "https://www.jaegertracing.io",
"summary": "Jaeger distributed tracing backend built from source via melange.",
"description": "Jaeger distributed tracing backend for collecting, storing and querying spans. Built from upstream source, signed and rebuilt every 6 hours against CVEs."
},
{
"name": "zipkin",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "zipkin",
"upstream_url": "https://zipkin.io/",
"summary": "Shell-less Zipkin distributed tracing server on a custom jlink JRE.",
"description": "Zipkin distributed tracing server for latency analysis across microservices. Runs on a custom jlink JRE, cosign-signed, rebuilt every 6 hours."
},
{
"name": "loki",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "loki",
"upstream_url": "https://grafana.com/oss/loki/",
"summary": "Loki log aggregation server built from source via melange.",
"description": "Grafana Loki log aggregation indexing labels instead of full text. Built from upstream source, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "tempo",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "tempo",
"upstream_url": "https://grafana.com/oss/tempo/",
"summary": "Shell-less Grafana Tempo distributed tracing backend.",
"description": "Grafana Tempo distributed tracing backend storing traces in object storage. Shell-less, cosign-signed with SLSA provenance, rebuilt every 6 hours."
},
{
"name": "otelcol",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "otelcol",
"upstream_url": "https://opentelemetry.io/docs/collector/",
"summary": "OpenTelemetry Collector built from source via melange.",
"description": "OpenTelemetry Collector receiving, processing and exporting traces, metrics and logs. Built from source, signed and rebuilt every 6 hours against CVE fixes."
},
{
"name": "fluent-bit",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "fluent-bit",
"upstream_url": "https://fluentbit.io",
"summary": "Fluent Bit log processor and forwarder built from source via melange.",
"description": "Fluent Bit lightweight log and metrics processor and forwarder for edge and Kubernetes. Built from source, signed and rebuilt every 6 hours."
},
{
"name": "telegraf",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "telegraf",
"upstream_url": "https://www.influxdata.com/time-series-platform/telegraf/",
"summary": "Telegraf metrics collection agent built from source via melange.",
"description": "Telegraf plugin-driven agent collecting metrics from systems, containers and APIs. Built from upstream source, cosign-signed, rebuilt every 6 hours."
},
{
"name": "vector",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "vector",
"upstream_url": "https://vector.dev",
"summary": "Shell-less Vector observability data pipeline built on Wolfi.",
"description": "Vector high-performance observability pipeline for logs, metrics and traces. Shell-less Wolfi build, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "node-exporter",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "node-exporter",
"upstream_url": "https://github.com/prometheus/node_exporter",
"summary": "Shell-less Prometheus Node Exporter for hardware and OS metrics.",
"description": "Prometheus Node Exporter publishing hardware and OS metrics from Linux hosts. Shell-less Go binary, signed with SLSA provenance, rebuilt 6-hourly."
},
{
"name": "blackbox-exporter",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "blackbox-exporter",
"upstream_url": "https://github.com/prometheus/blackbox_exporter",
"summary": "Shell-less Prometheus Blackbox Exporter for endpoint probing.",
"description": "Prometheus Blackbox Exporter probing endpoints over HTTP, TCP, DNS and ICMP. Shell-less, cosign-signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "kube-state-metrics",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "kube-state-metrics",
"upstream_url": "https://github.com/kubernetes/kube-state-metrics",
"summary": "Shell-less kube-state-metrics for Kubernetes object metrics.",
"description": "kube-state-metrics exposing Prometheus metrics about Kubernetes object state. Shell-less Go binary, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "redis-exporter",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "redis-exporter",
"upstream_url": "https://github.com/oliver006/redis_exporter",
"summary": "Shell-less Redis Exporter for Prometheus metrics.",
"description": "Redis Exporter publishing Redis and Valkey instance metrics to Prometheus. Shell-less Go binary, cosign-signed, rebuilt every 6 hours against CVE fixes."
},
{
"name": "pushgateway",
"category": "Observability",
"variants": [
"prod",
"dev"
],
"primary_package": "pushgateway",
"upstream_url": "https://github.com/prometheus/pushgateway",
"summary": "Shell-less Prometheus Pushgateway for ephemeral and batch job metrics.",
"description": "Prometheus Pushgateway accepting metrics from ephemeral and batch jobs. Shell-less Go binary, signed with SLSA build provenance, rebuilt every 6 hours."
},
{
"name": "coredns",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "coredns",
"upstream_url": "https://coredns.io",
"summary": "CoreDNS DNS server built from source via melange.",
"description": "CoreDNS pluggable DNS server and the default Kubernetes cluster resolver. Built from upstream source, shell-less, signed and rebuilt every 6 hours."
},
{
"name": "etcd",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "etcd",
"upstream_url": "https://etcd.io",
"summary": "etcd distributed key-value store built from source via melange.",
"description": "etcd distributed key-value store backing Kubernetes control planes. Built from upstream source, cosign-signed with SBOM attestations, rebuilt 6-hourly."
},
{
"name": "openbao",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "openbao",
"upstream_url": "https://openbao.org",
"summary": "OpenBao secret management server (Vault fork, MPL 2.0).",
"description": "OpenBao secrets management and encryption service, the MPL-2.0 Vault fork. Built from source, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "keycloak",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "keycloak",
"upstream_url": "https://www.keycloak.org",
"summary": "Keycloak identity and access management server.",
"description": "Keycloak identity and access management with OIDC, SAML and social login. Cosign-signed with SBOM attestations, rebuilt every 6 hours against CVE fixes."
},
{
"name": "qdrant",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "qdrant",
"upstream_url": "https://qdrant.tech",
"summary": "Qdrant vector search engine built from source via melange.",
"description": "Qdrant vector search engine for embeddings, semantic search and RAG. Built from upstream source, signed with SLSA provenance, rebuilt every 6 hours."
},
{
"name": "vaultwarden",
"category": "Apps",
"variants": [
"prod",
"dev"
],
"primary_package": "vaultwarden",
"upstream_url": "https://github.com/dani-garcia/vaultwarden",
"summary": "Shell-less Vaultwarden Bitwarden-compatible server built from source.",
"description": "Vaultwarden lightweight Bitwarden-compatible password manager server. Shell-less Rust build from source, signed and rebuilt every 6 hours against CVEs."
},
{
"name": "registry",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "registry",
"upstream_url": "https://distribution.github.io/distribution/",
"summary": "Shell-less OCI distribution registry (Docker Registry v2).",
"description": "OCI distribution registry (Docker Registry v2) for hosting container images. Shell-less, built from source, signed and rebuilt every 6 hours."
},
{
"name": "consul",
"category": "Infrastructure",
"variants": [
"prod",
"dev"
],
"primary_package": "consul",
"upstream_url": "https://www.consul.io",
"summary": "Shell-less HashiCorp Consul (BUSL-1.1) built from source via melange.",
"description": "HashiCorp Consul service discovery, health checking and service mesh. Built from upstream source under BUSL-1.1, signed and rebuilt every 6 hours."
},
{
"name": "helm",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "helm",
"upstream_url": "https://helm.sh",
"summary": "Shell-less Helm CLI built from source via melange.",
"description": "Helm CLI for templating, installing and upgrading Kubernetes chart releases. Shell-less Go binary, cosign-signed with SLSA provenance, rebuilt 6-hourly."
},
{
"name": "kubectl",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "kubectl",
"upstream_url": "https://kubernetes.io/docs/reference/kubectl/",
"summary": "Shell-less kubectl CLI built from source via melange.",
"description": "kubectl command-line client for managing Kubernetes clusters. Shell-less Go binary built from source, signed with SLSA provenance, rebuilt every 6 hours."
},
{
"name": "metrics-server",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "metrics-server",
"upstream_url": "https://github.com/kubernetes-sigs/metrics-server",
"summary": "Kubernetes metrics-server for kubectl top and HPA, built from source via melange.",
"description": "Kubernetes metrics-server supplying resource metrics for kubectl top and HPA. Built from source, signed and SBOM-attested, rebuilt every 6 hours."
},
{
"name": "opentofu",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "opentofu",
"upstream_url": "https://opentofu.org",
"summary": "Shell-less OpenTofu (Terraform-compatible IaC) built from source via melange.",
"description": "OpenTofu Terraform-compatible infrastructure-as-code CLI under MPL 2.0. Shell-less Go binary, cosign-signed with SLSA provenance, rebuilt 6-hourly."
},
{
"name": "trivy",
"category": "Kubernetes, CI & IaC",
"variants": [
"prod",
"dev"
],
"primary_package": "trivy",
"upstream_url": "https://trivy.dev",
"summary": "Shell-less Trivy vulnerability, IaC and secret scanner.",
"description": "Trivy scanner for vulnerabilities, misconfiguration, secrets and licences. Shell-less Go binary, signed and SBOM-attested, rebuilt every 6 hours."
},
{