-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.yaml
More file actions
1061 lines (1061 loc) · 35.4 KB
/
index.yaml
File metadata and controls
1061 lines (1061 loc) · 35.4 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
apiVersion: v1
entries:
aistor-keymanager:
- apiVersion: v2
created: "2026-04-03T12:04:50.734927704+02:00"
description: Helm chart for MinIO AIStor Key Manager
digest: 185b8befeb8c0b703d8dab0eb6bdcec971af23e89302d5dde027b028f6a2116d
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- key-manager
- kms
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-keymanager
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-keymanager-2.1.0.tgz
version: 2.1.0
- apiVersion: v2
created: "2026-04-03T12:04:50.734556509+02:00"
description: Helm chart for MinIO AIStor Key Manager
digest: 81039a18a1862ebf1d2f9849407683b6fc09c47345fa9631976013492d815272
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- key-manager
- kms
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-keymanager
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-keymanager-2.0.1.tgz
version: 2.0.1
- apiVersion: v2
created: "2026-04-03T12:04:50.734178551+02:00"
description: Helm chart for MinIO AIStor Key Manager
digest: 66810d1c72f47b4aaaa7fa36d35ac53d209679f787a78c642331a07f999d045d
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- key-manager
- kms
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-keymanager
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-keymanager-1.0.0.tgz
version: 1.0.0
aistor-keymanager-operator:
- apiVersion: v2
appVersion: v20250819175300.0.0
created: "2026-04-03T12:04:50.739659445+02:00"
description: Helm chart for MinIO AIStor Key Manager operator
digest: 4e617607222e05ee1137dc1e4713ae26836861f136e70a33295433c07417bd7d
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Key Management
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-keymanager-operator
sources:
- https://min.io/product/aistor/key-management-server
type: application
urls:
- https://helm.min.io/helm-releases/aistor-keymanager-operator-1.1.4.tgz
version: 1.1.4
- apiVersion: v2
appVersion: v20250819175300.0.0
created: "2026-04-03T12:04:50.739227968+02:00"
description: Helm chart for MinIO AIStor Key Manager operator
digest: 8a3eb70868378d24d5ae6c2d51b8afbdf3935df1b07eabff49e2d240028fdfbe
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Key Management
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-keymanager-operator
sources:
- https://min.io/product/aistor/key-management-server
type: application
urls:
- https://helm.min.io/helm-releases/aistor-keymanager-operator-1.1.3.tgz
version: 1.1.3
- apiVersion: v2
appVersion: v20250801184927.0.0
created: "2026-04-03T12:04:50.738714441+02:00"
description: Helm chart for MinIO AIStor Key Manager operator
digest: 22583246bb986e83d114a2db602c957fe2410e602e64b9ff31303055e6433909
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Key Management
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-keymanager-operator
sources:
- https://min.io/product/aistor/key-management-server
type: application
urls:
- https://helm.min.io/helm-releases/aistor-keymanager-operator-1.1.2.tgz
version: 1.1.2
- apiVersion: v2
appVersion: v20250701011319.0.0
created: "2026-04-03T12:04:50.736731864+02:00"
description: Helm chart for MinIO AIStor Key Manager operator
digest: c8391ac2f2d83290419aa27ace53721b02dfbb0d23bf57bf31bef2f65aba2d5d
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Key Management
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-keymanager-operator
sources:
- https://min.io/product/aistor/key-management-server
type: application
urls:
- https://helm.min.io/helm-releases/aistor-keymanager-operator-1.1.1.tgz
version: 1.1.1
- apiVersion: v2
appVersion: v20250701011319.0.0
created: "2026-04-03T12:04:50.736089781+02:00"
description: Helm chart for MinIO AIStor Key Manager operator
digest: be54c3f85f876bfee857b6554035b00bddf7b7245e57494f1456e97676418372
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Key Management
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-keymanager-operator
sources:
- https://min.io/product/aistor/key-management-server
type: application
urls:
- https://helm.min.io/helm-releases/aistor-keymanager-operator-1.1.0.tgz
version: 1.1.0
- apiVersion: v2
appVersion: v20250603065135.0.0
created: "2026-04-03T12:04:50.735484041+02:00"
description: Helm chart for MinIO AIStor Key Manager operator
digest: 5c71a03ed230260108d63eddf27b5c5dc1388595a418a8ec2fa1ced2ffab2161
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Key Management
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-keymanager-operator
sources:
- https://min.io/product/aistor/key-management-server
type: application
urls:
- https://helm.min.io/helm-releases/aistor-keymanager-operator-1.0.0.tgz
version: 1.0.0
aistor-objectstore:
- apiVersion: v2
created: "2026-04-03T12:04:50.742822977+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: c3acc5a8b7ef0801ae62b7e9a0a1e38c526165f4073845139e30fbe0db83365b
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.14.tgz
version: 1.0.14
- apiVersion: v2
created: "2026-04-03T12:04:50.742200708+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: be6b10a4ded6a4d625ba65447bcbdec0dcf99f33e37af5ed4c370c2993e130df
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.13.tgz
version: 1.0.13
- apiVersion: v2
created: "2026-04-03T12:04:50.741555179+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: 1f9ffdf2a608dd6b8fe27e28f1eaf5975e62684ce3c9db7537d24a386dbd0a7c
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.12.tgz
version: 1.0.12
- apiVersion: v2
created: "2026-04-03T12:04:50.740937587+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: 7f3fcb04a7a952096aa1d86e45aa5224a34fe2a84b0decd133d529301c86a526
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.11.tgz
version: 1.0.11
- apiVersion: v2
created: "2026-04-03T12:04:50.740282568+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: cdc2ece20533704796eab762ad0db8c6bf683868cb2431bddb29ee6466fcf92e
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.10.tgz
version: 1.0.10
- apiVersion: v2
created: "2026-04-03T12:04:50.748109163+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: da9dd494d6a443cee9401f0c3e10cedf2b615d59ad292582a3e17dba4ab820ca
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.9.tgz
version: 1.0.9
- apiVersion: v2
created: "2026-04-03T12:04:50.747425333+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: 17808666d7d9f314eaa59f9517f4f9df43924747a566afd5e4883950f80aaad9
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.8.tgz
version: 1.0.8
- apiVersion: v2
created: "2026-04-03T12:04:50.746715678+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: 18fff2705fb339abccb85ac7a40b244cd54dc9d7996c9a1cfa0ed6ae48e2e6c7
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.7.tgz
version: 1.0.7
- apiVersion: v2
created: "2026-04-03T12:04:50.746084415+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: e5c2e2327921e332f8065c41f3e79f01d1929268517cd611f29a69e99b80dbfc
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.6.tgz
version: 1.0.6
- apiVersion: v2
created: "2026-04-03T12:04:50.745213792+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: af0d6033fcb8baf8eb09628e1d558dd4e8bc49378d799690c6709f3ab000b9ca
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.5.tgz
version: 1.0.5
- apiVersion: v2
created: "2026-04-03T12:04:50.744232977+02:00"
description: Helm chart for MinIO AIStor Object Store
digest: c154bb96796c3a57e27f30d39f1b771a3b112daffe28596b8831d401078dc74d
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-1.0.3.tgz
version: 1.0.3
aistor-objectstore-operator:
- apiVersion: v2
appVersion: v20250819175300.0.0
created: "2026-04-03T12:04:50.765838294+02:00"
description: Helm chart for MinIO AIStor Object Store operator
digest: df90729ab7b8e205ae94f9ad6685e9582a1b28361d673adb23962a0d8da222b9
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-operator-5.1.0.tgz
version: 5.1.0
- apiVersion: v2
appVersion: v20250819175300.0.0
created: "2026-04-03T12:04:50.763953484+02:00"
description: Helm chart for MinIO AIStor Object Store operator
digest: 58832527470e7f1ba34706b3e17ead59fa8ecd20a73c302d9d97c37dcea99d70
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-operator-5.0.2.tgz
version: 5.0.2
- apiVersion: v2
appVersion: v20250801184927.0.0
created: "2026-04-03T12:04:50.762523549+02:00"
description: Helm chart for MinIO AIStor Object Store operator
digest: 0e6fe555c618fc0e53dbef6e91a8eff87bc3d6e6cb44898c0ebc4b45afeaef16
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-operator-5.0.1.tgz
version: 5.0.1
- apiVersion: v2
appVersion: v20250801184927.0.0
created: "2026-04-03T12:04:50.760059872+02:00"
description: Helm chart for MinIO AIStor Object Store operator
digest: 6a350acf09284d2f696ac7f1e87f44acd37e1a51b91ec406fc6f3eb710e45076
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-operator-5.0.0.tgz
version: 5.0.0
- apiVersion: v2
appVersion: v20250701011319.0.0
created: "2026-04-03T12:04:50.758630622+02:00"
description: Helm chart for MinIO AIStor Object Store operator
digest: 90db8201762469f60708cb45819191442a25e5de1002cb6ac29e34561a3daa8b
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-operator-4.1.1.tgz
version: 4.1.1
- apiVersion: v2
appVersion: v20250701011319.0.0
created: "2026-04-03T12:04:50.756413337+02:00"
description: Helm chart for MinIO AIStor Object Store operator
digest: 53fad9a8bcd730490fa45e35a35ad2f25b591891f5358a1b8b423fee1d625ecf
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-operator-4.1.0.tgz
version: 4.1.0
- apiVersion: v2
appVersion: v20250603065135.0.0
created: "2026-04-03T12:04:50.752682783+02:00"
description: Helm chart for MinIO AIStor Object Store operator
digest: 1909cc9861b6198db2f2e37e1a4b52ed891ca5b609c025f161ca548479ac234c
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-operator-4.0.1.tgz
version: 4.0.1
- apiVersion: v2
appVersion: v20250603065135.0.0
created: "2026-04-03T12:04:50.750710257+02:00"
description: Helm chart for MinIO AIStor Object Store operator
digest: f6092229a0a3c63623942d9864f2d3305876bdf907e042c8fa717b773a0191c9
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-objectstore-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-objectstore-operator-4.0.0.tgz
version: 4.0.0
aistor-operator:
- apiVersion: v2
appVersion: v20260402210825.0.0
created: "2026-04-03T12:04:50.779838786+02:00"
description: Helm chart for MinIO AIStor operators
digest: f1b896f2657dfbf7afc1f42238f2069b04523d9ea153ad896df707c85ffbe15d
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-operator-5.6.0.tgz
version: 5.6.0
- apiVersion: v2
appVersion: v20260318173617.0.0
created: "2026-04-03T12:04:50.777694832+02:00"
description: Helm chart for MinIO AIStor operators
digest: 1258508fc37eaedd0ea9643f862ae2f0558f562ccf6eefa2f84b37e5d21accdf
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-operator-5.5.2.tgz
version: 5.5.2
- apiVersion: v2
appVersion: v20260318173617.0.0
created: "2026-04-03T12:04:50.776317624+02:00"
description: Helm chart for MinIO AIStor operators
digest: f374998b3a9c6366cd7c3293fe5abe8d593136472f339c8a437782004e04746f
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-operator-5.5.1.tgz
version: 5.5.1
- apiVersion: v2
appVersion: v20260318173617.0.0
created: "2026-04-03T12:04:50.774118937+02:00"
description: Helm chart for MinIO AIStor operators
digest: 680146e2e0c830b72bfe8cd5d4fcd96227f269ae3ca0dc1c6e746bfac8cc5a1e
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-operator-5.5.0.tgz
version: 5.5.0
- apiVersion: v2
appVersion: v20260209031243.0.0
created: "2026-04-03T12:04:50.772670642+02:00"
description: Helm chart for MinIO AIStor operators
digest: ef60f651b2e53ffc5470d64ae00bbe13ae8c5f09315f777c2b0888d2e5f75ddd
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-operator-5.4.0.tgz
version: 5.4.0
- apiVersion: v2
appVersion: v20251220100920.0.0
created: "2026-04-03T12:04:50.770539514+02:00"
description: Helm chart for MinIO AIStor operators
digest: e25b6143b9e01877db1ff79abfebf68b56d191a7c1052f4e0a9dd6bfdef7fef2
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-operator-5.3.0.tgz
version: 5.3.0
- apiVersion: v2
appVersion: v20251217191008.0.0
created: "2026-04-03T12:04:50.769307816+02:00"
description: Helm chart for MinIO AIStor operators
digest: 3c833fd95e7bfc3d576f54e48f4950df82fab503bca77c6559adacb1e7f62366
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-operator-5.2.1.tgz
version: 5.2.1
- apiVersion: v2
appVersion: v20251217191008.0.0
created: "2026-04-03T12:04:50.767182899+02:00"
description: Helm chart for MinIO AIStor operators
digest: f3801e95fa29b11bbfda42c44a8ed7a09c00563850681c61bc675608895e1206
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- Enterprise Object Storage
- storage
- object-storage
- S3
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-operator
sources:
- https://min.io/product/aistor-overview
type: application
urls:
- https://helm.min.io/helm-releases/aistor-operator-5.2.0.tgz
version: 5.2.0
aistor-volumemanager:
- apiVersion: v2
appVersion: 5.0.2
created: "2026-04-03T12:04:50.782820775+02:00"
description: DirectPV - AIStor Volume Manager
digest: 8fd23d18c5b0618f061593b98dbefdc79c742d0e2d498ab833f5d02a1f09a091
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-volumemanager
type: application
urls:
- https://helm.min.io/helm-releases/aistor-volumemanager-0.3.2.tgz
version: 0.3.2
- apiVersion: v2
appVersion: 5.0.1
created: "2026-04-03T12:04:50.782405601+02:00"
description: DirectPV - AIStor Volume Manager
digest: 2239ff729b02445cdfa19ba149568554c9c263a25230bee3d07464148a90f158
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-volumemanager
type: application
urls:
- https://helm.min.io/helm-releases/aistor-volumemanager-0.3.1.tgz
version: 0.3.1
- apiVersion: v2
appVersion: 5.0.0
created: "2026-04-03T12:04:50.782021903+02:00"
description: DirectPV - AIStor Volume Manager
digest: a70f719ec57af2aef390bbdb5fb1179a3cd40d3404cacf89e0acbf4b5301fd98
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-volumemanager
type: application
urls:
- https://helm.min.io/helm-releases/aistor-volumemanager-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
appVersion: 5.0.0
created: "2026-04-03T12:04:50.781649058+02:00"
description: DirectPV - AIStor Volume Manager
digest: a5e875ae287e874a59231adf183061f2ba721407751e2d225009a14b51636ca1
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-volumemanager
type: application
urls:
- https://helm.min.io/helm-releases/aistor-volumemanager-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
appVersion: 5.0.0
created: "2026-04-03T12:04:50.781248881+02:00"
description: DirectPV - AIStor Volume Manager
digest: 268f4aa040e9ac9c1e106387d61fb4012813c667dc8c78436df93b776c956dd7
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-volumemanager
type: application
urls:
- https://helm.min.io/helm-releases/aistor-volumemanager-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: 5.0.0
created: "2026-04-03T12:04:50.780910413+02:00"
description: DirectPV - AIStor Volume Manager
digest: bccc013dc271b77e396e8c894678f89a3b6233ee795e1412de5fc8f69b70b078
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-volumemanager
type: application
urls:
- https://helm.min.io/helm-releases/aistor-volumemanager-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: 5.0.0
created: "2026-04-03T12:04:50.780556165+02:00"
description: DirectPV - AIStor Volume Manager
digest: c89b368a281f8a893bc08ce10919fd0900957d3f35f84343541da7d4b30d3c94
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-volumemanager
type: application
urls:
- https://helm.min.io/helm-releases/aistor-volumemanager-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 5.0.0
created: "2026-04-03T12:04:50.78025279+02:00"
description: DirectPV - AIStor Volume Manager
digest: dd4d4690acc17c019a3b93b499e62556d05d66eddf99cffe8d3de7351b074ccb
home: https://min.io
icon: https://min.io/resources/img/logo/MINIO_wordmark.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: aistor-volumemanager
type: application
urls:
- https://helm.min.io/helm-releases/aistor-volumemanager-0.1.0.tgz
version: 0.1.0
directpv:
- apiVersion: v2
appVersion: 5.1.0
created: "2026-04-03T12:04:50.783558107+02:00"
description: DirectPV
digest: 664a3fba9dacd9c3c1d5e4bdc6196b99d3e1bfbd20561774c15d23b4c6352a93
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: directpv
type: application
urls:
- https://helm.min.io/helm-releases/directpv-0.4.1.tgz
version: 0.4.1
- apiVersion: v2
appVersion: 5.1.0
created: "2026-04-03T12:04:50.783176603+02:00"
description: DirectPV
digest: 17706b975bf76d4770a9300f502554ee8ffc56d4e181829e020bc895f9644e21
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- storage
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: directpv
type: application
urls:
- https://helm.min.io/helm-releases/directpv-0.4.0.tgz
version: 0.4.0
hperf:
- apiVersion: v2
appVersion: 5.0.6
created: "2026-04-03T12:04:50.783810702+02:00"
description: hperf is a tool for active measurements of the maximum achievable bandwidth between N peers, measuring RX/TX bandwidth for each peers.
digest: 507a7f411beb1ff3876755303d530a07727f04757d0a1015620d5f33b2977ba2
name: hperf
type: application
urls:
- https://helm.min.io/helm-releases/hperf-v5.0.6.tgz
version: v5.0.6
minkms:
- apiVersion: v2
created: "2026-04-03T12:04:50.784469244+02:00"
description: Helm chart for MinIO AIStor Key Manager
digest: 6ae4e3ca946e949d67b1cf36000509297f4f336f90f4b3734d10a265f2ea16f4
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- key-manager
- kms
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: minkms
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/minkms-2.3.0.tgz
version: 2.3.0
- apiVersion: v2
created: "2026-04-03T12:04:50.784149775+02:00"
description: Helm chart for MinIO AIStor Key Manager
digest: bd22ccb1d93d705a4d60599fee7c7cbc18d4a9352e885d433fc8a88b48b906e7
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- key-manager
- kms
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: minkms
sources:
- https://github.com/minio/aistor
type: application
urls:
- https://helm.min.io/helm-releases/minkms-2.2.0.tgz
version: 2.2.0
minkms-operator:
- apiVersion: v2
appVersion: v20260402210825.0.0
created: "2026-04-03T12:04:50.788221055+02:00"
description: Helm chart for MinIO AIStor Key Manager operator
digest: aaa3b26a36df8a066cb7ac0ebc37b898abe3ba1f0c7c2e9c4301f3824745394c
home: https://min.io
icon: https://helm.min.io/logo.png
keywords:
- Key Management
maintainers:
- email: dev@minio.io
name: MinIO, Inc
name: minkms-operator
sources:
- https://min.io/product/aistor/key-management-server
type: application
urls:
- https://helm.min.io/helm-releases/minkms-operator-1.5.0.tgz
version: 1.5.0
- apiVersion: v2
appVersion: v20260318173617.0.0
created: "2026-04-03T12:04:50.78754822+02:00"
description: Helm chart for MinIO AIStor Key Manager operator
digest: 4b60b3aaa00f7c1ed503275785cde07384233c605326166541ed73a57a667224
home: https://min.io
icon: https://helm.min.io/logo.png
keywords: