-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.yaml
More file actions
2089 lines (2089 loc) · 74.2 KB
/
index.yaml
File metadata and controls
2089 lines (2089 loc) · 74.2 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:
archive-housekeeping:
- apiVersion: v2
created: "2026-04-20T09:42:02.478839028Z"
description: A Helm chart for Archive Housekeeping
digest: db46cf8247700c1ddcdd1afdd38e3e643ccafd0910b875ce1a2c74154849dfcd
name: archive-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/archive-housekeeping-7.0.2-SNAPSHOT.tgz
version: 7.0.2-SNAPSHOT
- apiVersion: v2
created: "2026-04-20T09:42:02.478606439Z"
description: A Helm chart for Archive Housekeeping
digest: 800bd839491cafc15afe516ff53dd509af8b4d5d4ff199a7757d3bed31500c3b
name: archive-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/archive-housekeeping-7.0.1.tgz
version: 7.0.1
- apiVersion: v2
created: "2026-04-20T09:42:02.478307185Z"
description: A Helm chart for Archive Housekeeping
digest: 43cece0aacdef89d64c2a14d3bdeeae329f54c81b9d1e4af1257f8204ead2c3f
name: archive-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/archive-housekeeping-7.0.1-rc5.tgz
version: 7.0.1-rc5
- apiVersion: v2
created: "2026-04-20T09:42:02.478052313Z"
description: A Helm chart for Archive Housekeeping
digest: f2d4b6103924235ad1f52260a3544ba8c3acfdb3a4f6de6eee177301c3241882
name: archive-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/archive-housekeeping-7.0.1-alpha1.tgz
version: 7.0.1-alpha1
- apiVersion: v2
created: "2026-04-20T09:42:02.476831218Z"
description: A Helm chart for Archive Housekeeping
digest: 1cdaa1e7540de322fabba1e1602a8bba9880a34f38b918e133bf0157c9c6e5fb
name: archive-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/archive-housekeeping-7.0.1-SNAPSHOT.tgz
version: 7.0.1-SNAPSHOT
artifacts:
- apiVersion: v2
created: "2026-04-20T09:42:02.481586169Z"
description: A Helm chart for the Punch Artifacts
digest: 86bab94aca4fc86021b155eda97a1afc1346de12a8f2d41093fe3d334a2fc61b
name: artifacts
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-8.0-latest.tgz
version: 8.0-latest
- apiVersion: v2
created: "2026-04-20T09:42:02.481247469Z"
description: A Helm chart for the Punch Artifacts
digest: ac98aa4ec2733d1d3165b793ba767905ed0bd86c8281c90d64405ec2cf3edfd2
name: artifacts
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-8.0-dev.tgz
version: 8.0-dev
- apiVersion: v2
created: "2026-04-20T09:42:02.481953452Z"
description: A Helm chart for the Punch Artifacts
digest: 2830b296ce3d887f58e53a279754fe46f24f40d894b7cd4767beee2f48e1cfb0
name: artifacts
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-8.0.0-beta1.tgz
version: 8.0.0-beta1
- apiVersion: v2
created: "2026-04-20T09:42:02.480889107Z"
description: A Helm chart for the Punch Artifacts
digest: 329d1fc88c8d9030ec7af9972f1de5f5ae5e82aedfde6ec605f1fbbf4a7396a4
name: artifacts
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-7.1.0-SNAPSHOT.tgz
version: 7.1.0-SNAPSHOT
- apiVersion: v2
created: "2026-04-20T09:42:02.480486039Z"
description: A Helm chart for the Punch Artifacts
digest: 32a3cf85fab44f6ba10175d2a27384526216a9311598a37a5fc730f626b265e5
name: artifacts
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-7.0.2-SNAPSHOT.tgz
version: 7.0.2-SNAPSHOT
- apiVersion: v2
created: "2026-04-20T09:42:02.480199799Z"
description: A Helm chart for the Punch Artifacts
digest: 8a5f9a2f4319a404fd4f97f95e4d2b69c491b98a3fa647ed04d633fd59f61deb
name: artifacts
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-7.0.1.tgz
version: 7.0.1
- apiVersion: v2
created: "2026-04-20T09:42:02.479898731Z"
description: A Helm chart for the Punch Artifacts
digest: a65585608c1a86bc8a06645aac620aa131b116aa030485ae29622713e700f3f0
name: artifacts
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-7.0.1-rc5.tgz
version: 7.0.1-rc5
- apiVersion: v2
created: "2026-04-20T09:42:02.479553181Z"
description: A Helm chart for the Punch Artifacts
digest: 9537b36d43186d10f1aa6596237dabd7fe1167374f2cfd91c7e18850d48754f3
name: artifacts
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-7.0.1-alpha1.tgz
version: 7.0.1-alpha1
- apiVersion: v2
created: "2026-04-20T09:42:02.479193608Z"
description: A Helm chart for the Punch Artifacts
digest: 8601d30af82d1d0b1e0c8e248d485cf5286b73bc9cd63d51bc535459220c644d
name: artifacts
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-7.0.1-SNAPSHOT.tgz
version: 7.0.1-SNAPSHOT
artifacts-server:
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.49208005Z"
description: Helm chart for the Punch Artifacts Server
digest: b6f6a2073c5b3b95575262140ea5b50783de3ee5e55a2e366b50b77c426d17f5
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.13.tgz
version: 8.1.13
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.491544262Z"
description: Helm chart for the Punch Artifacts Server
digest: 2c127b55715db3ea5ed9a00afe4bf03f7505afc15904760787ea5edb801dcf2c
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.13-hiding-minio-credentials.tgz
version: 8.1.13-hiding-minio-credentials
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.490968973Z"
description: Helm chart for the Punch Artifacts Server
digest: d405c14df808f353e593212dcacfdaa74c06f31c7e15380ee59dbe79630c3196
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.13-CVEs-analysis-dev.tgz
version: 8.1.13-CVEs-analysis-dev
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.490376731Z"
description: Helm chart for the Punch Artifacts Server
digest: e61fe31c80d1f8c8ec8349804fac50e0df5b33ac40b32b617e43f4f7ba5dbcfb
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.12.tgz
version: 8.1.12
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.489864543Z"
description: Helm chart for the Punch Artifacts Server
digest: 9601a47a43ce6a194a186a0c1c1bc71f23d7b7ae50b496c642438ea6e26d26b1
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.11.tgz
version: 8.1.11
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.489347553Z"
description: Helm chart for the Punch Artifacts Server
digest: 6f973c295c4f911c1bcba65f4bb5adcc640875a1655ad65a880510771184c125
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.11-RC1.tgz
version: 8.1.11-RC1
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.488845194Z"
description: Helm chart for the Punch Artifacts Server
digest: 0108e0cd119d9af10889433a496fd19c6a3315de4cdb40a1d2454aef9df901bf
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.10.tgz
version: 8.1.10
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.488390379Z"
description: Helm chart for the Punch Artifacts Server
digest: e10276af157059da5f6dd02a7b66f5b47e5371f7586ac8f151f1bf27199cb9e0
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.10-p1-metric-labels-fix.tgz
version: 8.1.10-p1-metric-labels-fix
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.499792126Z"
description: Helm chart for the Punch Artifacts Server
digest: a43b68847c8b9ae87d83bac690396e4313339ec5d7169f282d3fe50b8e7134f0
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.9.tgz
version: 8.1.9
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.499255072Z"
description: Helm chart for the Punch Artifacts Server
digest: 6615267e703805da1a12f9d6495c325c6b47e62adbc8ed41728080cde0dbedb6
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.9-p1-421-hkp-resolver.tgz
version: 8.1.9-p1-421-hkp-resolver
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.498781377Z"
description: Helm chart for the Punch Artifacts Server
digest: 4b266404b4287ea44295185684be37f608ac65ada24719d7bae95844d100f524
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.8.tgz
version: 8.1.8
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.498202339Z"
description: Helm chart for the Punch Artifacts Server
digest: d0c8801f1cbe4fb22ae35b81dcb2b0ea0a85f8560a5366889dbd9a74951e6a5c
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.8-trajectory-simulator.tgz
version: 8.1.8-trajectory-simulator
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.497670732Z"
description: Helm chart for the Punch Artifacts Server
digest: 61dc4bc81d3fe458ab3d679fb0418cf1a081a9dec67b7431093743b9d3204929
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.8-simulator-patch.tgz
version: 8.1.8-simulator-patch
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.49560492Z"
description: Helm chart for the Punch Artifacts Server
digest: 2fe5fb6f87ef69111d62ef32141ab48201a22c79163360047f63debe256f3591
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.8-patch-schema.tgz
version: 8.1.8-patch-schema
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.494948907Z"
description: Helm chart for the Punch Artifacts Server
digest: 9041636ffc51cf1559827469130f2481a67a4098038c1caae9a2e23b9e9fa9e3
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.7.tgz
version: 8.1.7
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.494394329Z"
description: Helm chart for the Punch Artifacts Server
digest: 7e18c74feb30d207b36e7051376ae77f6ee434e345bcaa008751c8778562a661
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.6.tgz
version: 8.1.6
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.493965842Z"
description: Helm chart for the Punch Artifacts Server
digest: 38fbc25a11b70e490fcd42d93d69d89cf172a332785c968190cdeb60150b4028
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.5.tgz
version: 8.1.5
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.493440295Z"
description: Helm chart for the Punch Artifacts Server
digest: 517cd16ce12fc8bd0807904af21fe8f27e613e7c2c25440768777625a016c45f
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.4.tgz
version: 8.1.4
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.492862667Z"
description: Helm chart for the Punch Artifacts Server
digest: 667213a394afeabc1c79a286b6c28b2f15732a6abd59b6172582720ea4a220ef
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.3.tgz
version: 8.1.3
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.492437692Z"
description: Helm chart for the Punch Artifacts Server
digest: 3b803014b8f7145209ef36706d58db24c1d776d6d6caf34608452eb43ece5c13
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.2.tgz
version: 8.1.2
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.487890732Z"
description: Helm chart for the Punch Artifacts Server
digest: 85921d116f3d7c402d1e30c04353d680c1bedec15bc23a9b4580ff3a811228ae
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.1.tgz
version: 8.1.1
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.48743062Z"
description: Helm chart for the Punch Artifacts Server
digest: 6a7bceae8b477f7e388ee9c5512c2d65ff0bce0a664cc6d2e780e7ad4f7b64bb
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1.0.tgz
version: 8.1.0
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.487024929Z"
description: Helm chart for the Punch Artifacts Server
digest: 7cf78b97c72173459eb6073d6aebba8ab9b259cd9f552406a27980141a4477a1
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1-latest.tgz
version: 8.1-latest
- apiVersion: v2
appVersion: 8.1-dev
created: "2026-04-20T09:42:02.486369523Z"
description: Helm chart for the Punch Artifacts Server
digest: 06d9386d4309df24eb3d9fbbaea2e80587e10ded7461ca37775f64c8b3fd5f2e
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.1-dev.tgz
version: 8.1-dev
- apiVersion: v2
appVersion: 8.0-dev
created: "2026-04-20T09:42:02.484280247Z"
description: Helm chart for the Punch Artifacts Server
digest: 67f7abb1d533456302b24f40f0ca9565542c051a1be293e3122267491437cc97
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.0.3.tgz
version: 8.0.3
- apiVersion: v2
appVersion: 8.0-dev
created: "2026-04-20T09:42:02.483858361Z"
description: Helm chart for the Punch Artifacts Server
digest: 0ca750ced679303d88151a4d0cdf06f71d4e676fdd6e38c864b26347ec27408a
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.0.2.tgz
version: 8.0.2
- apiVersion: v2
appVersion: 8.0-dev
created: "2026-04-20T09:42:02.483467959Z"
description: Helm chart for the Punch Artifacts Server
digest: 0d0ad273f23874b0b780c779d2f05f40af2fa6607d42c3470f8ea95ff6dfe9a7
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.0.1.tgz
version: 8.0.1
- apiVersion: v2
appVersion: 8.0-dev
created: "2026-04-20T09:42:02.483128699Z"
description: Helm chart for the Punch Artifacts Server
digest: 6417e8c0714d2e18583e38edf10c417e326e07fd28e7fb559a5a862bde9da9cf
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.0.0.tgz
version: 8.0.0
- apiVersion: v2
appVersion: 8.0-dev
created: "2026-04-20T09:42:02.482774292Z"
description: Helm chart for the Punch Artifacts Server
digest: 09de8ebab785e53364c5fa9ff2faa8f15f045a34c992e67a421fff27d448aa23
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.0-latest.tgz
version: 8.0-latest
- apiVersion: v2
appVersion: 8.0-dev
created: "2026-04-20T09:42:02.482346779Z"
description: Helm chart for the Punch Artifacts Server
digest: d0e458dcef045503eaef51fb4756c5e27cec20e0e82bbcc11478e8e1671195ff
name: artifacts-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/artifacts-server-8.0-dev.tgz
version: 8.0-dev
elastalert:
- apiVersion: v2
created: "2026-04-20T09:42:02.501362612Z"
description: A Helm chart for Elastalert
digest: 4a4075c8f9c4a79b35ab1b318a408c54cbecac2c09ce020f78d59de4d6f36e24
name: elastalert
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastalert-7.0.2-SNAPSHOT.tgz
version: 7.0.2-SNAPSHOT
- apiVersion: v2
created: "2026-04-20T09:42:02.501089602Z"
description: A Helm chart for Elastalert
digest: a6ca55d53910f2bc445c259a93da90ce541a9a34ab3771dafe2e73214468d373
name: elastalert
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastalert-7.0.1.tgz
version: 7.0.1
- apiVersion: v2
created: "2026-04-20T09:42:02.500797127Z"
description: A Helm chart for Elastalert
digest: b07a7fc11838feefb339091ab10441352eb16456d3179fc237836cedb5e22bdf
name: elastalert
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastalert-7.0.1-rc5.tgz
version: 7.0.1-rc5
- apiVersion: v2
created: "2026-04-20T09:42:02.500453279Z"
description: A Helm chart for Elastalert
digest: ce58ea87cd24421709f9603b4880e62e4cc7ea4f02ba46b543f370d3ca2c0bca
name: elastalert
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastalert-7.0.1-alpha1.tgz
version: 7.0.1-alpha1
- apiVersion: v2
created: "2026-04-20T09:42:02.500112547Z"
description: A Helm chart for Elastalert
digest: 453140ffdfe8ff053ae693f7d289bb9889eb1ee8e151fbaa8d07187a39652943
name: elastalert
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastalert-7.0.1-SNAPSHOT.tgz
version: 7.0.1-SNAPSHOT
elastic-housekeeping:
- apiVersion: v2
created: "2026-04-20T09:42:02.502875249Z"
description: A Helm chart for Elastic Housekeeping
digest: 1a2df9b5fe393687072b6ffffbddd1a2933c8a02752438fa69ba7a5f3e4879b3
name: elastic-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastic-housekeeping-7.0.2-SNAPSHOT.tgz
version: 7.0.2-SNAPSHOT
- apiVersion: v2
created: "2026-04-20T09:42:02.502579833Z"
description: A Helm chart for Elastic Housekeeping
digest: 07757336d1e965403960507bdd835996eb26a2389484fe8f0da28c9ab6cab290
name: elastic-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastic-housekeeping-7.0.1.tgz
version: 7.0.1
- apiVersion: v2
created: "2026-04-20T09:42:02.502282868Z"
description: A Helm chart for Elastic Housekeeping
digest: 9e6179976070d719852b120094b36f8433f92c2fca88b851523046e12380bf91
name: elastic-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastic-housekeeping-7.0.1-rc5.tgz
version: 7.0.1-rc5
- apiVersion: v2
created: "2026-04-20T09:42:02.502025159Z"
description: A Helm chart for Elastic Housekeeping
digest: dfe2db82678d952d978f2401f7f291a04c521b2a36a9dc0f4b18dcf97f882556
name: elastic-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastic-housekeeping-7.0.1-alpha1.tgz
version: 7.0.1-alpha1
- apiVersion: v2
created: "2026-04-20T09:42:02.501695415Z"
description: A Helm chart for Elastic Housekeeping
digest: 03635e9ee5c041f4b3e7363b286d0727eec236390097b4e0b8d1632475127ab8
name: elastic-housekeeping
type: application
urls:
- https://punchplatform.github.io/punch-helm/elastic-housekeeping-7.0.1-SNAPSHOT.tgz
version: 7.0.1-SNAPSHOT
extraction-server:
- apiVersion: v2
created: "2026-04-20T09:42:02.504039829Z"
description: A Helm chart for Punch extraction server
digest: d16196c66bf9405a4d3fffcd683e9d052ef98d88965be2d48917bcab79082d11
name: extraction-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/extraction-server-7.0.2-SNAPSHOT.tgz
version: 7.0.2-SNAPSHOT
- apiVersion: v2
created: "2026-04-20T09:42:02.503819289Z"
description: A Helm chart for Punch extraction server
digest: 845b105aeb33b903ad4c5bd1a3268bef27710212501875ff751c05c3795e0d35
name: extraction-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/extraction-server-7.0.1.tgz
version: 7.0.1
- apiVersion: v2
created: "2026-04-20T09:42:02.503622592Z"
description: A Helm chart for Punch extraction server
digest: 8eb15424d55b8c513d329a284309bf7ecc64a0d1b2775f15e06a364021e7262d
name: extraction-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/extraction-server-7.0.1-rc5.tgz
version: 7.0.1-rc5
- apiVersion: v2
created: "2026-04-20T09:42:02.503382637Z"
description: A Helm chart for Punch extraction server
digest: 84bbdc92e966b60fa4123308641e7adad99580ae9636a782e8625858ec0e035f
name: extraction-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/extraction-server-7.0.1-alpha1.tgz
version: 7.0.1-alpha1
- apiVersion: v2
created: "2026-04-20T09:42:02.503160747Z"
description: A Helm chart for Punch extraction server
digest: 22d2e8f4416837ae762d25691abd74f7ed131c51b3e8519d027bdb72c7fffb61
name: extraction-server
type: application
urls:
- https://punchplatform.github.io/punch-helm/extraction-server-7.0.1-SNAPSHOT.tgz
version: 7.0.1-SNAPSHOT
jupypunch:
- apiVersion: v2
created: "2026-04-20T09:42:02.510012162Z"
description: Helm chart for jupy punch
digest: 536df3deb64d6f734e7aab8853334db59df46a7a6bfc29c466aa8cce54b9160a
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.13.tgz
version: 8.1.13
- apiVersion: v2
created: "2026-04-20T09:42:02.509638524Z"
description: Helm chart for jupy punch
digest: 2caf58c287803f437d0ec544e8a8f0697e136df3c14f551eff8c4049ffc34fe9
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.12.tgz
version: 8.1.12
- apiVersion: v2
created: "2026-04-20T09:42:02.509275086Z"
description: Helm chart for jupy punch
digest: 63998842c98806f3534a02803fe8e218729903ad32cd2b2b6d9b55784f470ef8
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.11.tgz
version: 8.1.11
- apiVersion: v2
created: "2026-04-20T09:42:02.508922454Z"
description: Helm chart for jupy punch
digest: 4d89982f45af067c37c61db4863029fa6184fc4c1553c1180910e4e81e51bb5e
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.10.tgz
version: 8.1.10
- apiVersion: v2
created: "2026-04-20T09:42:02.513009633Z"
description: Helm chart for jupy punch
digest: 4a1f4469e07d1010a1615affe84d66cf05a6bfb90428133910ed2923f6e43d3a
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.9.tgz
version: 8.1.9
- apiVersion: v2
created: "2026-04-20T09:42:02.512546179Z"
description: Helm chart for jupy punch
digest: c93e32fc1821c20f96c5d0af280a8a37a9e1c9b512c6b9c28656adcdde61a5a4
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.8.tgz
version: 8.1.8
- apiVersion: v2
created: "2026-04-20T09:42:02.512208896Z"
description: Helm chart for jupy punch
digest: d89522239876fced81116aef9725713243457ed78a1462f2baa506247f14a8e3
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.7.tgz
version: 8.1.7
- apiVersion: v2
created: "2026-04-20T09:42:02.511883981Z"
description: Helm chart for jupy punch
digest: 5a667632082dc87d07954d28e20a61190b6268f204437e55f0dd6e423ff69fa9
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.6.tgz
version: 8.1.6
- apiVersion: v2
created: "2026-04-20T09:42:02.511525918Z"
description: Helm chart for jupy punch
digest: dea50c9a605b247eb14cb5fa7e8cfaf2e06144b41dbcb002adb24e7af8be0a8f
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.5.tgz
version: 8.1.5
- apiVersion: v2
created: "2026-04-20T09:42:02.511174749Z"
description: Helm chart for jupy punch
digest: 663a86f5eecf34dcb5aba80b74b319f901f8643936423bfba43e512526e366ae
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.4.tgz
version: 8.1.4
- apiVersion: v2
created: "2026-04-20T09:42:02.510771638Z"
description: Helm chart for jupy punch
digest: 9ec42285f2d65a4b0bb8b2cefec03db9492ed14729b2e3c4759b075f8a3320b6
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.3.tgz
version: 8.1.3
- apiVersion: v2
created: "2026-04-20T09:42:02.510371535Z"
description: Helm chart for jupy punch
digest: db4a8bcace496dd8ccff61f18d939845e221d5c70458d7709f5862e34c38927b
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.2.tgz
version: 8.1.2
- apiVersion: v2
created: "2026-04-20T09:42:02.508537264Z"
description: Helm chart for jupy punch
digest: d9ebb5f96c6596c7a6e1cc435d6240471b9e679ff6f009bfafa1cfbf8e4b2656
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.1.tgz
version: 8.1.1
- apiVersion: v2
created: "2026-04-20T09:42:02.507482254Z"
description: Helm chart for jupy punch
digest: 820d162f7b6d733a6d2b14ab56b5e42ec820ee9a37702610f6e6359751d74f3b
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1.0.tgz
version: 8.1.0
- apiVersion: v2
created: "2026-04-20T09:42:02.506685777Z"
description: Helm chart for jupy punch
digest: 17a36488a8292b1cca8f5e557f769a6f0ce4a84d66bc82ee41895cc504a97fd3
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1-latest.tgz
version: 8.1-latest
- apiVersion: v2
created: "2026-04-20T09:42:02.506170732Z"
description: Helm chart for jupy punch
digest: 04548a7327b0a9c2e1d2508775008c496618e59ec5a1b2a301f360d0c824820e
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.1-dev.tgz
version: 8.1-dev
- apiVersion: v2
created: "2026-04-20T09:42:02.505589106Z"
description: Helm chart for jupy punch
digest: 95e339d9f1e90dffc795874edb5d32511faf37de9409d2f9ac68fc594280d1b1
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.0.3.tgz
version: 8.0.3
- apiVersion: v2
created: "2026-04-20T09:42:02.505092311Z"
description: Helm chart for jupy punch
digest: 8d367a7af3c4cc9a88ee23082cde61f36449b1900e6c635250f799c1f93b1833
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.0.2.tgz
version: 8.0.2
- apiVersion: v2
created: "2026-04-20T09:42:02.504707334Z"
description: Helm chart for jupy punch
digest: 5e1e421319468719473659fd405159443b6f7fbb37efd55ba6abe84c2df4e233
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.0-latest.tgz
version: 8.0-latest
- apiVersion: v2
created: "2026-04-20T09:42:02.504370796Z"
description: Helm chart for jupy punch
digest: bc24e07b412373358339094d67f56882ee420e15bee609217cbefe7169cc6b84
name: jupypunch
type: application
urls:
- https://punchplatform.github.io/punch-helm/jupypunch-8.0-dev.tgz
version: 8.0-dev
log-injector:
- apiVersion: v2
created: "2026-04-20T09:42:02.514014173Z"
description: A Helm chart for the Punch log injector
digest: 6accc3bf48f953f43ecb05d7950a66dfd600098de7d6ac3cb048771123a50f50
name: log-injector
type: application
urls:
- https://punchplatform.github.io/punch-helm/log-injector-7.0.2-SNAPSHOT.tgz
version: 7.0.2-SNAPSHOT
- apiVersion: v2
created: "2026-04-20T09:42:02.513806867Z"
description: A Helm chart for the Punch log injector
digest: d44fccc955ae565c23601c75b3b1a1260b60018232a3ce3f66c1f4fef6b8d9b4
name: log-injector
type: application
urls:
- https://punchplatform.github.io/punch-helm/log-injector-7.0.1.tgz
version: 7.0.1
- apiVersion: v2
created: "2026-04-20T09:42:02.51363063Z"
description: A Helm chart for the Punch log injector
digest: ee48fd44237eaa63d1951258210a766f306dc8ef1189796ff5f5fd6e65385905
name: log-injector
type: application
urls:
- https://punchplatform.github.io/punch-helm/log-injector-7.0.1-rc5.tgz
version: 7.0.1-rc5
- apiVersion: v2
created: "2026-04-20T09:42:02.513426496Z"
description: A Helm chart for the Punch log injector
digest: 43b3a7e2a4b716a853a176c0f84d5605cfd9b39c3a4e3c1b3f9282460a5c8291
name: log-injector
type: application
urls:
- https://punchplatform.github.io/punch-helm/log-injector-7.0.1-alpha1.tgz
version: 7.0.1-alpha1
- apiVersion: v2
created: "2026-04-20T09:42:02.513238126Z"
description: A Helm chart for the Punch log injector
digest: 0f3a3d63d4bb4b336a6e4c22e4c7177560df9cfd19bea09acbd4afdcd3970615
name: log-injector
type: application
urls:
- https://punchplatform.github.io/punch-helm/log-injector-7.0.1-SNAPSHOT.tgz
version: 7.0.1-SNAPSHOT
operator:
- apiVersion: v2
created: "2026-04-20T09:42:02.540890321Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate
repository: ""
tags:
- operator.certificate
version: "8"
- condition: operator.webhook.enabled
name: operator.webhook
repository: ""
tags:
- operator.webhook
version: "8"
description: A Helm chart for the Punch Operator
digest: f530679d3c07ef9fc400649e7e6b3cdd3f7a9c4721bbd745f048703ef8faf7c8
name: operator
type: application
urls:
- https://punchplatform.github.io/punch-helm/operator-80-implement-native-security-analysis-tool-from-git-in-the-ci-sast-cve-dependency-analysis-dev.tgz
version: 80-implement-native-security-analysis-tool-from-git-in-the-ci-sast-cve-dependency-analysis-dev
- apiVersion: v2
created: "2026-04-20T09:42:02.532881352Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate
repository: ""
tags:
- operator.certificate
version: "8"
- condition: operator.webhook.enabled
name: operator.webhook
repository: ""
tags:
- operator.webhook
version: "8"
description: A Helm chart for the Punch Operator
digest: 2b4824c66c32c05ef3e9fb550266abc3af00754e16ce9d5d3da9fe1dce449fd0
name: operator
type: application
urls:
- https://punchplatform.github.io/punch-helm/operator-8.1.13.tgz
version: 8.1.13
- apiVersion: v2
created: "2026-04-20T09:42:02.532103395Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate
repository: ""
tags:
- operator.certificate
version: "8"
- condition: operator.webhook.enabled
name: operator.webhook
repository: ""
tags:
- operator.webhook
version: "8"
description: A Helm chart for the Punch Operator
digest: 9b0dbeaff263d3cb6035ce5dd9e58be473f699862077684743b0be40b4eb1b70
name: operator
type: application
urls:
- https://punchplatform.github.io/punch-helm/operator-8.1.12.tgz
version: 8.1.12
- apiVersion: v2
created: "2026-04-20T09:42:02.531343173Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate
repository: ""
tags:
- operator.certificate
version: "8"
- condition: operator.webhook.enabled
name: operator.webhook
repository: ""
tags:
- operator.webhook
version: "8"
description: A Helm chart for the Punch Operator
digest: cc177147364a9634311a87bd78bbfcabb9829422b9cf087fc84030b29f49e31e
name: operator
type: application
urls:
- https://punchplatform.github.io/punch-helm/operator-8.1.11.tgz
version: 8.1.11
- apiVersion: v2
created: "2026-04-20T09:42:02.530576447Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate
repository: ""
tags:
- operator.certificate
version: "8"
- condition: operator.webhook.enabled
name: operator.webhook
repository: ""
tags:
- operator.webhook
version: "8"
description: A Helm chart for the Punch Operator
digest: 2e618919d4269d4d2b3b781ffc5cf5679ed1b218a0f2e266340d0658d6abb185
name: operator
type: application
urls:
- https://punchplatform.github.io/punch-helm/operator-8.1.10.tgz
version: 8.1.10
- apiVersion: v2
created: "2026-04-20T09:42:02.540055473Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate
repository: ""
tags:
- operator.certificate
version: "8"
- condition: operator.webhook.enabled
name: operator.webhook
repository: ""
tags:
- operator.webhook
version: "8"
description: A Helm chart for the Punch Operator
digest: 2446b9cd43ed321a4db780ecdbd406628cfbe8ec548b58cb7a83181e31eaf40d
name: operator
type: application
urls:
- https://punchplatform.github.io/punch-helm/operator-8.1.9.tgz
version: 8.1.9
- apiVersion: v2
created: "2026-04-20T09:42:02.538170698Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate
repository: ""
tags:
- operator.certificate
version: "8"
- condition: operator.webhook.enabled
name: operator.webhook
repository: ""
tags:
- operator.webhook
version: "8"
description: A Helm chart for the Punch Operator
digest: 0e9d8d71a6470728675c29544d17410acd913a1ae953a0cb24dda1445f9a4d0b
name: operator
type: application
urls:
- https://punchplatform.github.io/punch-helm/operator-8.1.8.tgz
version: 8.1.8
- apiVersion: v2
created: "2026-04-20T09:42:02.537418988Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate
repository: ""
tags:
- operator.certificate
version: "8"
- condition: operator.webhook.enabled
name: operator.webhook
repository: ""
tags:
- operator.webhook
version: "8"
description: A Helm chart for the Punch Operator
digest: 3ec2124c3dfc221a39f75348f15375bef16dc6a606e5f9fdc33d741eb32268e1
name: operator
type: application
urls:
- https://punchplatform.github.io/punch-helm/operator-8.1.7.tgz
version: 8.1.7
- apiVersion: v2
created: "2026-04-20T09:42:02.536693987Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate
repository: ""
tags:
- operator.certificate
version: "8"
- condition: operator.webhook.enabled
name: operator.webhook
repository: ""
tags:
- operator.webhook
version: "8"
description: A Helm chart for the Punch Operator
digest: 1e4e042fb8d849db9408ae8d0525a2927a95da449c9e322cc1b3f25bf564032e
name: operator
type: application
urls:
- https://punchplatform.github.io/punch-helm/operator-8.1.6.tgz
version: 8.1.6
- apiVersion: v2
created: "2026-04-20T09:42:02.535936403Z"
dependencies:
- condition: operator.certificate.enabled
name: operator.certificate