-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.yaml
1629 lines (1629 loc) · 67.8 KB
/
index.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
apiVersion: v1
entries:
appscope:
- apiVersion: v2
appVersion: 1.3.4
created: "2024-12-04T12:09:10.041058759Z"
description: Cribl AppScope Helm Chart for Kubernetes.
digest: b0f9b4e4ede482c283afe85d035e0d7752ea8be6c37935ec1149f472bf1c0e51
home: https://appscope.dev/
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: appscope
sources:
- https://github.com/criblio/appscope
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.3/appscope-1.3.4.tgz
version: 1.3.4
- apiVersion: v2
appVersion: 1.3.3
created: "2023-05-18T16:25:45.763553528Z"
description: Cribl AppScope Helm Chart for Kubernetes.
digest: 93425c67b77d7b2d0c815c4ee849dbb4ce21e59429e38846b429c2063a0add2c
home: https://appscope.dev/
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: appscope
sources:
- https://github.com/criblio/appscope
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.2-appscope1.3.3/appscope-1.3.3.tgz
version: 1.3.3
- apiVersion: v2
appVersion: 1.3.2
created: "2023-05-18T13:51:57.701527477Z"
description: Cribl AppScope Helm Chart for Kubernetes.
digest: f5d34457a44d648dfb9b36301925ba7262662aacbb509430b20050bfb1ea2080
home: https://appscope.dev/
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: appscope
sources:
- https://github.com/criblio/appscope
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.2/appscope-1.3.2.tgz
version: 1.3.2
common:
- apiVersion: v2
appVersion: 1.0.0
created: "2024-12-04T12:09:10.041263393Z"
description: Common templates for Cribl Helm Charts
digest: b2913e0cfe0fd5674d5deee13a10197b9d0519f1ad8a04cff8af036dcacced6a
maintainers:
- email: support@cribl.io
name: Cribl, Inc.
url: https://github.com/criblio/helm-charts
name: common
type: library
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.3/common-1.0.0.tgz
version: 1.0.0
edge:
- apiVersion: v2
appVersion: 4.9.3
created: "2024-12-04T12:09:10.042208786Z"
description: A Helm chart for Kubernetes
digest: efc5cf7e019aa9aa22a4a0e177455971f7ba5acb5539143a81f322a5b8c9c6b9
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.3/edge-4.9.3.tgz
version: 4.9.3
- apiVersion: v2
appVersion: 4.9.2
created: "2024-11-14T13:07:25.169440066Z"
description: A Helm chart for Kubernetes
digest: 948a9b7c3e9b6c9857da02157d8f05c593fc97482ad0ec280ce6be17df39977d
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.2/edge-4.9.2.tgz
version: 4.9.2
- apiVersion: v2
appVersion: 4.9.1
created: "2024-11-06T14:16:19.177818605Z"
description: A Helm chart for Kubernetes
digest: ea89f41aa1f432ec7d6327a468801b736fe85b942bea0a2c42bb846c12e0de3c
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.1/edge-4.9.1.tgz
version: 4.9.1
- apiVersion: v2
appVersion: 4.9.0
created: "2024-10-16T13:11:36.457309394Z"
description: A Helm chart for Kubernetes
digest: 34bf281f0c66bd229f73018afefb40d1cb277d89cc99ced10af51a29c0ef8ec0
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.0/edge-4.9.0.tgz
version: 4.9.0
- apiVersion: v2
appVersion: 4.8.2
created: "2024-09-11T10:53:15.818875387Z"
description: A Helm chart for Kubernetes
digest: 4b278d3e99503dce679fd10337774df09e8e8f0fe1570df2ca2f9100bfbe7838
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.8.2/edge-4.8.2.tgz
version: 4.8.2
- apiVersion: v2
appVersion: 4.8.1
created: "2024-08-15T15:48:39.797378079Z"
description: A Helm chart for Kubernetes
digest: 5db787dad3c8dee884d00c99c4ac4253bb9450a52ed565a8f406a944380fdc14
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.8.1/edge-4.8.1.tgz
version: 4.8.1
- apiVersion: v2
appVersion: 4.8.0
created: "2024-08-14T12:50:46.268645641Z"
description: A Helm chart for Kubernetes
digest: 2aa098b98c02f38a255b1a91d22008460a05dcf27bd7f5657a5557b7301e66e9
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.8.0/edge-4.8.0.tgz
version: 4.8.0
- apiVersion: v2
appVersion: 4.7.3
created: "2024-07-19T17:30:36.504381012Z"
description: A Helm chart for Kubernetes
digest: 51cb3c844e8d616132348a8e98df447d1a7c163e0096d1915cf0a5d31039c08a
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.7.3/edge-4.7.3.tgz
version: 4.7.3
- apiVersion: v2
appVersion: 4.7.2
created: "2024-07-17T12:27:20.50919338Z"
description: A Helm chart for Kubernetes
digest: 634a495264b183fff195d9403e9c9cc0addfe22a4c654ef7c7786294526a3bdd
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.7.2/edge-4.7.2.tgz
version: 4.7.2
- apiVersion: v2
appVersion: 4.7.1
created: "2024-06-07T11:39:06.762504624Z"
description: A Helm chart for Kubernetes
digest: c4710049409284b5010fa6a7ed2b3cee1e4e89de52f948afd0ed971a0da15894
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.7.1/edge-4.7.1.tgz
version: 4.7.1
- apiVersion: v2
appVersion: 4.7.0
created: "2024-06-05T13:56:34.039355769Z"
description: A Helm chart for Kubernetes
digest: 0734fbc5373d370c9ed37514c704b0562a13f8ba4ff445c7910038757de6c8bb
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.7.0/edge-4.7.0.tgz
version: 4.7.0
- apiVersion: v2
appVersion: 4.6.1
created: "2024-05-15T14:09:17.341263683Z"
description: A Helm chart for Kubernetes
digest: a7733e4ace9c0368e42825f73b53106174883bc79ea3453fe450cdbae5cab354
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.6.1/edge-4.6.1.tgz
version: 4.6.1
- apiVersion: v2
appVersion: 4.6.0
created: "2024-04-17T22:20:46.716496315Z"
description: A Helm chart for Kubernetes
digest: b6186c3ba59cbc5bfa8b4406323cd56101eaa509711053520313f278cc34a9aa
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.6.0/edge-4.6.0.tgz
version: 4.6.0
- apiVersion: v2
appVersion: 4.5.1
created: "2024-03-20T12:47:25.461814309Z"
description: A Helm chart for Kubernetes
digest: a2bf61f263585077b8a2ea54974f808c641048febce2de2fad7e2a068a52af77
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.5.1/edge-4.5.1.tgz
version: 4.5.1
- apiVersion: v2
appVersion: 4.5.0
created: "2024-02-14T15:04:39.212219473Z"
description: A Helm chart for Kubernetes
digest: 5e23e9f5a6e7129e4656c5c41b567ca6a3943cb7d491118fb96da219a28525bb
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.5.0/edge-4.5.0.tgz
version: 4.5.0
- apiVersion: v2
appVersion: 4.4.4
created: "2024-01-17T16:14:19.605880383Z"
description: A Helm chart for Kubernetes
digest: 7ff40b0ac1d562b49f785c7ecd2f37a53e8d204d4408242600dae040e6c9d093
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.4/edge-4.4.4.tgz
version: 4.4.4
- apiVersion: v2
appVersion: 4.4.3
created: "2023-12-07T13:29:32.685217094Z"
description: A Helm chart for Kubernetes
digest: c3eaa47e9f6cade82e030161e3edbe960dc72661544155c3c4b5ac57fc60cead
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.3/edge-4.4.3.tgz
version: 4.4.3
- apiVersion: v2
appVersion: 4.4.2
created: "2023-12-06T13:58:49.866062915Z"
description: A Helm chart for Kubernetes
digest: aeca9fcd8b4dd2a9d6dcbf0d89ec9c3ff1f3aa66cdc352091bbd6cc6f9760bfe
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.2/edge-4.4.2.tgz
version: 4.4.2
- apiVersion: v2
appVersion: 4.4.1
created: "2023-11-20T15:08:50.391027188Z"
description: A Helm chart for Kubernetes
digest: 01d6b485b783ae92074788df4f817dfd9d234f18441be89e91dbd9cd181a4863
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.1/edge-4.4.1.tgz
version: 4.4.1
- apiVersion: v2
appVersion: 4.4.0
created: "2023-11-08T14:19:34.312646947Z"
description: A Helm chart for Kubernetes
digest: f1eb0d8a4f6075403aea41835b3b20f16469747431bf040fc1e07e68c58e482d
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.0/edge-4.4.0.tgz
version: 4.4.0
- apiVersion: v2
appVersion: 4.3.1
created: "2023-10-12T16:11:10.469393961Z"
description: A Helm chart for Kubernetes
digest: ff300540af383783a3c1cb3f005065baf299017054a4be6383789185c9fdec70
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.3.1/edge-4.3.1.tgz
version: 4.3.1
- apiVersion: v2
appVersion: 4.3.0
created: "2023-09-21T00:06:41.253259716Z"
description: A Helm chart for Kubernetes
digest: 5124ca1ae7d1a3aa8759cf8f654881985f46b7426fdc8255c83a17cffd8d3564
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.3.0/edge-4.3.0.tgz
version: 4.3.0
- apiVersion: v2
appVersion: 4.2.2
created: "2023-08-21T15:05:00.766269349Z"
description: A Helm chart for Kubernetes
digest: 3f9c2d176445866e9832e0dd3015bae1f2c35d26f113434c7ca62d09fe481c22
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.2.2/edge-4.2.2.tgz
version: 4.2.2
- apiVersion: v2
appVersion: 4.2.1
created: "2023-07-24T17:21:36.884315603Z"
description: A Helm chart for Kubernetes
digest: 01ef4b5db7408c0656befd8c46f4a94cc9e96977c61932bc6125152a4dc43e0a
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.2.1/edge-4.2.1.tgz
version: 4.2.1
- apiVersion: v2
appVersion: 4.2.0
created: "2023-07-19T18:28:42.0744097Z"
description: A Helm chart for Kubernetes
digest: f54d6fead3f762bacc6823410336d418d6955cf548209d777c059487f230d96d
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.2.0/edge-4.2.0.tgz
version: 4.2.0
- apiVersion: v2
appVersion: 4.1.3
created: "2023-06-14T16:12:19.884834642Z"
description: A Helm chart for Kubernetes
digest: 3fbfa7ff4bf602115c84295842ff8df376659f69f51becdfe3d86788de3dc176
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.3/edge-4.1.3.tgz
version: 4.1.3
- apiVersion: v2
appVersion: 4.1.2
created: "2023-05-18T16:25:45.764921905Z"
description: A Helm chart for Kubernetes
digest: 1b8ff5b0d9af76a70f41e5a65d52b199668ee11c518642ed0f8e2c5dad237ef9
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.2-appscope1.3.3/edge-4.1.2.tgz
version: 4.1.2
- apiVersion: v2
appVersion: 4.1.1
created: "2023-04-19T14:03:06.9857613Z"
description: A Helm chart for Kubernetes
digest: e26af597bb3c9dc96ef0edecb0ffe401bdb9d7577fcb40f8c60278a25a78d26b
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.1/edge-4.1.1.tgz
version: 4.1.1
- apiVersion: v2
appVersion: 4.1.0
created: "2023-04-06T16:13:33.503512125Z"
description: A Helm chart for Kubernetes
digest: 0452fc7c79abe0b627f911f6e048c3bcce4c24a624f8c0259e104b236cc7c5fd
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.1-alpha2/edge-4.1.1-alpha1.tgz
version: 4.1.1-alpha1
- apiVersion: v2
appVersion: 4.1.0
created: "2023-03-22T03:48:21.172660533Z"
description: A Helm chart for Kubernetes
digest: 12765da111af32392891e40ae90b980469666a4f5e1df4c4bebfb58baaee7f66
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.0/edge-4.1.0.tgz
version: 4.1.0
- apiVersion: v2
appVersion: 4.0.4.2
created: "2023-03-14T18:37:15.342407831Z"
description: A Helm chart for Kubernetes
digest: 815802ac92744e561b6f6764fe4b9b77c3a77781f1049829e28bf1f5433ae082
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.4.2/edge-4.0.4.tgz
version: 4.0.4
- apiVersion: v2
appVersion: 4.0.3
created: "2023-01-18T18:41:56.838746851Z"
description: A Helm chart for Kubernetes
digest: bfffac5802a1b78e2919318ca53c02bc77491bc12837685d03ea4a9c1048b0bf
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.3/edge-4.0.3.tgz
version: 4.0.3
- apiVersion: v2
appVersion: 4.0.2
created: "2022-12-08T17:46:38.36674659Z"
description: A Helm chart for Kubernetes
digest: 28d7932df1f70a35f935721db4eb063949ad5f76d0eb8cb7fc5915cce942c693
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.2/edge-4.0.2.tgz
version: 4.0.2
- apiVersion: v2
appVersion: 4.0.1
created: "2022-12-07T17:15:21.734912657Z"
description: A Helm chart for Kubernetes
digest: 2355fc623b53f448de7ce8f608417581b7d790f538d71e81a7344cc997f98b36
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.1/edge-4.0.1.tgz
version: 4.0.1
- apiVersion: v2
appVersion: 4.0.0
created: "2022-11-11T03:10:09.828139999Z"
description: A Helm chart for Kubernetes
digest: 8230002904eecd2063b7d1a8cf936a6933c74a99ab5a208e49ddb18280eedbdc
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: edge
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.0/edge-4.0.0.tgz
version: 4.0.0
logstream-leader:
- apiVersion: v2
appVersion: 4.9.3
created: "2024-12-04T12:09:10.043238316Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 6ba5956ed10566f5857d277c4f416ebf39492d3233ddb45eb3c8f6b84a497eea
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.3/logstream-leader-4.9.3.tgz
version: 4.9.3
- apiVersion: v2
appVersion: 4.9.2
created: "2024-11-14T13:07:25.170464751Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 738211ff91d4ce74a6d74f40bc1df1b5d63bd6ccb44eebc0be2f52ba8567352f
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.2/logstream-leader-4.9.2.tgz
version: 4.9.2
- apiVersion: v2
appVersion: 4.9.1
created: "2024-11-06T14:16:19.178827686Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 938f299b9c71f2d6efd3a3392d1a7060879a29e094972556817c9626836bb3cb
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.1/logstream-leader-4.9.1.tgz
version: 4.9.1
- apiVersion: v2
appVersion: 4.9.0
created: "2024-10-16T13:11:36.459347193Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 862954fc7ee7e59d3b1e1018ce207a0fb143a2249cc40070773078892b0fde45
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.9.0/logstream-leader-4.9.0.tgz
version: 4.9.0
- apiVersion: v2
appVersion: 4.8.2
created: "2024-09-11T10:53:15.819851527Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 1690e55e2507e0e116b2751ffcc91c705f08bd553a12b903408e2748124327e8
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.8.2/logstream-leader-4.8.2.tgz
version: 4.8.2
- apiVersion: v2
appVersion: 4.8.1
created: "2024-08-15T15:48:39.79837076Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 96d95507a0913fbbf7df4eccd79443c3225dbd97345d2d3ac900f7147bf001df
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.8.1/logstream-leader-4.8.1.tgz
version: 4.8.1
- apiVersion: v2
appVersion: 4.8.0
created: "2024-08-14T12:50:46.269684634Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 5f171394915cf50e2a20ad4e040350dc8879124812c74d219ce257aaef591a94
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.8.0/logstream-leader-4.8.0.tgz
version: 4.8.0
- apiVersion: v2
appVersion: 4.7.3
created: "2024-07-19T17:30:36.505376753Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 90699c40e56e1b2b93329b222e7f6b9dd8c2a13c41746302297338a595a45356
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.7.3/logstream-leader-4.7.3.tgz
version: 4.7.3
- apiVersion: v2
appVersion: 4.7.2
created: "2024-07-17T12:27:20.510192117Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: a6a2ca9ad2e8215ded9c58f9dc78ce2a71c6cb69bbc826708b9e9d30f08a3de6
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.7.2/logstream-leader-4.7.2.tgz
version: 4.7.2
- apiVersion: v2
appVersion: 4.7.1
created: "2024-06-07T11:39:06.763594041Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: dffe31b4d311d4b2b2f3c736837a4d182a3efd34c8c3b18e7c3a37e24fb6d64f
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.7.1/logstream-leader-4.7.1.tgz
version: 4.7.1
- apiVersion: v2
appVersion: 4.7.0
created: "2024-06-05T13:56:34.040411913Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 0ac3918ac2f869a597c94b92de0fc4f06830636ad84b3fe2a72876895d9f8b81
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.7.0/logstream-leader-4.7.0.tgz
version: 4.7.0
- apiVersion: v2
appVersion: 4.6.1
created: "2024-05-15T14:09:17.342189795Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 69ecd3bb5e063e5a7767bd3397812672595c2b7cabffca6afb4268e4d70ef7bd
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.6.1/logstream-leader-4.6.1.tgz
version: 4.6.1
- apiVersion: v2
appVersion: 4.6.0
created: "2024-04-17T22:20:46.718258911Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 7928b1f73965ffa2e0e9308a94afdd4c01922ba9178754a5329f88af004c6bf6
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.6.0/logstream-leader-4.6.0.tgz
version: 4.6.0
- apiVersion: v2
appVersion: 4.5.1
created: "2024-03-20T12:47:25.462757508Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 0711f6e9fb34001a9ecc47a5e78ed0e03512a4d7c938aa4c82e98faade6c06bb
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.5.1/logstream-leader-4.5.1.tgz
version: 4.5.1
- apiVersion: v2
appVersion: 4.5.0
created: "2024-02-14T15:04:39.21391359Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 6171d803132d8acfecf2ecf8bd82be46874e9a3fffb3481ada1082472d188acb
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.5.0/logstream-leader-4.5.0.tgz
version: 4.5.0
- apiVersion: v2
appVersion: 4.4.4
created: "2024-01-17T16:14:19.606817234Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 0d8de07c1cc871f73da8acc422da96918c9726a8f2e7ec9a6c84451f54328fee
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.4/logstream-leader-4.4.4.tgz
version: 4.4.4
- apiVersion: v2
appVersion: 4.4.3
created: "2023-12-07T13:29:32.686108485Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: cb170c0c0ec7ad3417a388dbf48ee273dafe2624a3327fcdf80eb6774e42578b
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.3/logstream-leader-4.4.3.tgz
version: 4.4.3
- apiVersion: v2
appVersion: 4.4.2
created: "2023-12-06T13:58:49.866974381Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 2f61eb7c7162ab239055c2ca71346a6ecc04716afb5a763f3f76e1e967d6c034
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.2/logstream-leader-4.4.2.tgz
version: 4.4.2
- apiVersion: v2
appVersion: 4.4.1
created: "2023-11-20T15:08:50.391974156Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 2ef486e08f056969707ff6b5893fbe6a86cc2f476436fd38ebb6b798b2a54441
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.1/logstream-leader-4.4.1.tgz
version: 4.4.1
- apiVersion: v2
appVersion: 4.4.0
created: "2023-11-08T14:19:34.313920041Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: bb4a4da313f75c4f7401a97f345c72f2e77a7783f15cd6236f26b2460b31fc8d
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.4.0/logstream-leader-4.4.0.tgz
version: 4.4.0
- apiVersion: v2
appVersion: 4.3.1
created: "2023-10-12T16:11:10.476297979Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 27c175f19dd64bfea6e5c0c49f1babb57c2d23adfe57326c9f0eaf3fd89e32bc
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.3.1/logstream-leader-4.3.1.tgz
version: 4.3.1
- apiVersion: v2
appVersion: 4.3.0
created: "2023-09-21T00:06:41.254529345Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 0ba2d7b8e5cb08da1e523121ed0faa2a73bad01eedd62123c297b4117ab07721
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.3.0/logstream-leader-4.3.0.tgz
version: 4.3.0
- apiVersion: v2
appVersion: 4.2.2
created: "2023-08-21T15:05:00.767560368Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: b07f49bd0f104daafa96c48e9b81ef64e0e26a24ae4e667057cbcc035d843404
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.2.2/logstream-leader-4.2.2.tgz
version: 4.2.2
- apiVersion: v2
appVersion: 4.2.1
created: "2023-07-24T17:21:36.885803393Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: b916efaee4778d916eb6ebd38da2269d8650205fbd581996ee0f963550085e30
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.2.1/logstream-leader-4.2.1.tgz
version: 4.2.1
- apiVersion: v2
appVersion: 4.2.0
created: "2023-07-19T18:28:42.075813384Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 472529144ff4c7dab710b31a9a5054b78292fd754d01910ddac98982be24827e
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.2.0/logstream-leader-4.2.0.tgz
version: 4.2.0
- apiVersion: v2
appVersion: 4.1.3
created: "2023-06-14T16:12:19.886016759Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: f6b576e1e4be0b76058a30e99029298a187a0b4925ab16de9ffd9e6ad436a726
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.3/logstream-leader-4.1.3.tgz
version: 4.1.3
- apiVersion: v2
appVersion: 4.1.2
created: "2023-05-18T16:25:45.766096186Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 0257c510da0931b63e20243ead3e5c55b9672d1d084f2e75faa684a5203bb42c
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.2-appscope1.3.3/logstream-leader-4.1.2.tgz
version: 4.1.2
- apiVersion: v2
appVersion: 4.1.1
created: "2023-04-19T14:03:06.987015694Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: a3deae9e47b8c602bbeb89588af5264122d1765f729dd4a3887671ec18d079a3
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.1/logstream-leader-4.1.1.tgz
version: 4.1.1
- apiVersion: v2
appVersion: 4.1.0
created: "2023-04-06T16:13:33.504677468Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 6fb912c232ec75595e3955c6ce62e7e443520a7ef6186509ab4a33c5f6648329
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.1-alpha2/logstream-leader-4.1.1-alpha2.tgz
version: 4.1.1-alpha2
- apiVersion: v2
appVersion: 4.1.0
created: "2023-04-04T15:51:37.960117233Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 2630d1b1ac571438f49187f5d9abb731e2238309411b07b2197c0bbc171dbcd3
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.1.1-alpha1/logstream-leader-4.1.0.tgz
version: 4.1.0
- apiVersion: v2
appVersion: 4.0.4.2
created: "2023-03-14T18:37:15.343514553Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 7875effd6755de73abb614acaf96af2022ecdf14fa0c467c824c4279cf499782
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.4.2/logstream-leader-4.0.4.tgz
version: 4.0.4
- apiVersion: v2
appVersion: 4.0.3
created: "2023-01-18T18:41:56.846752956Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 3fb2d44a7648384671ae8df11ab99f8c456fb1deab78900794be35602cc043be
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.3/logstream-leader-4.0.3.tgz
version: 4.0.3
- apiVersion: v2
appVersion: 4.0.2
created: "2022-12-08T17:46:38.368035973Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: bd4693c0875efae6a4380ea9bc1b5238d84e19e27f5e92e59909290b8104b175
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.2/logstream-leader-4.0.2.tgz
version: 4.0.2
- apiVersion: v2
appVersion: 4.0.1
created: "2022-12-07T17:15:21.736056959Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: e2a5c29756bb33330e04efc2b425edd560106cd445d0ef24c4c01e0fcccc2d83
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.1/logstream-leader-4.0.1.tgz
version: 4.0.1
- apiVersion: v2
appVersion: 4.0.0
created: "2022-11-11T03:10:09.83067542Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: e1e55c4ae1ee03fd108a0158d19eaf0da16a7cc30c4f4c980f539e1e4ed8d2aa
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v4.0.0/logstream-leader-4.0.0.tgz
version: 4.0.0
- apiVersion: v2
appVersion: 3.5.4
created: "2022-10-13T11:33:46.036985663Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 92fd8712ffea6ed8af69beba7baf217b5ff33f0f1286d24638da422590fe153b
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.5.4/logstream-leader-3.5.4.tgz
version: 3.5.4
- apiVersion: v2
appVersion: 3.5.3
created: "2022-09-15T08:14:15.642832505Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: a7e4b9169c398641af1a0ccc27420b7cf3c4f4f499bde9731096f645a72cd739
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.5.3/logstream-leader-3.5.3.tgz
version: 3.5.3
- apiVersion: v2
appVersion: 3.5.2
created: "2022-08-17T12:16:08.708199954Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: a8f536067d594fc7362044f3f041d3a3cfbfb944f98a097e7e3f5d81ae798249
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.5.2/logstream-leader-3.5.2.tgz
version: 3.5.2
- apiVersion: v2
appVersion: 3.5.1
created: "2022-07-20T09:10:09.538915586Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 9cdd38b7f10897b236a77fe221105fab4fd0cf948a1dd969cfd5a26889b022be
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.5.1/logstream-leader-3.5.1.tgz
version: 3.5.1
- apiVersion: v2
appVersion: 3.5.0
created: "2022-07-11T12:21:00.448509467Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 8b8a51cd15bd9ddb0d2c13a408ba4bbf512d7e1eff956b3e35b1307e3c3156e6
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.5.0/logstream-leader-3.5.0.tgz
version: 3.5.0
- apiVersion: v2
appVersion: 3.4.2
created: "2022-05-25T13:35:12.327297515Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: c3d73a73f0035cd675c20b0301d8339bfc49fc1d318672a0c7fac505192b5e03
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.4.2/logstream-leader-3.4.2.tgz
version: 3.4.2
- apiVersion: v2
appVersion: 3.4.1
created: "2022-05-10T06:58:51.348368549Z"
description: Deploys a Cribl Stream Leader in K8s.
digest: 983d24b3ca0e631c397ed21ef55daee09b272d4d5f8aec66ab772907783fc1ec
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.4.1/logstream-leader-3.4.1.tgz
version: 3.4.1
- apiVersion: v2
appVersion: 3.4.0
created: "2022-03-22T08:46:01.697713867Z"
description: Deploys a Cribl LogStream Leader in K8s.
digest: 68614619f7526ec9bdbeaa3fdee67979b464c139a65b4d68e859bfdc9b9ef350
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.4.0/logstream-leader-3.4.0.tgz
version: 3.4.0
- apiVersion: v2
appVersion: 3.3.0
created: "2022-02-24T20:13:12.752662418Z"
description: Deploys a Cribl LogStream Leader in K8s.
digest: 8a9bf431a716205950f1ab5db626e22fa0c7baa675b9309b67d666da1a51951a
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.3.0.1/logstream-leader-3.3.0.tgz
version: 3.3.0
- apiVersion: v2
appVersion: 3.2.2
created: "2022-01-19T22:52:41.200957666Z"
description: Deploys a Cribl LogStream Leader in K8s.
digest: 2d8722c6a648fc95f8f6d4282b492615cda8876653ddcea3448c56ed8fcf1b37
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.2.2/logstream-leader-3.2.2.tgz
version: 3.2.2
- apiVersion: v2
appVersion: 3.2.1
created: "2021-12-10T20:45:07.611740929Z"
description: Deploys a Cribl LogStream Leader in K8s.
digest: f8e46eaa15e0ef81b73fcf0532e44fbfce015ba3fe966e072b91ca39b0261a1e
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.2.1/logstream-leader-3.2.1.tgz
version: 3.2.1
- apiVersion: v2
appVersion: 3.2.0
created: "2021-12-10T20:13:45.753808185Z"
description: Deploys a Cribl LogStream Leader in K8s.
digest: 45653cbbb862ae84410e785f982166a9e678169c993c671f103d4782e4d00228
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.2.0/logstream-leader-3.2.0.tgz
version: 3.2.0
- apiVersion: v2
appVersion: 3.1.3
created: "2021-12-10T19:40:09.711564579Z"
description: Deploys a Cribl LogStream Leader in K8s.
digest: 79ffba6a5a6e9b6853fce2acd85b5a79085b5c25c39af8c21651c247125e0123
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.1.3/logstream-leader-3.1.3.tgz
version: 3.1.3
- apiVersion: v2
appVersion: 3.1.2
created: "2021-10-18T16:20:11.061134842Z"
description: Deploys a Cribl LogStream Leader in K8s.
digest: 22b1945d412c05cb3f168b89dd849660ab8e2cd6aa5e618cec906657d78547c2
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.1.2/logstream-leader-3.1.2.tgz
version: 3.1.2
- apiVersion: v2
appVersion: 3.1.1
created: "2021-09-13T02:26:36.77681767Z"
description: Deploys a Cribl LogStream Leader in K8s.
digest: 37ce38df0e22b8654c9db8164b411c371003f465c0446c00977e57117e26dea2
icon: https://criblio.github.io/helm-charts/images/Cribl_Logo_Color_TM.png
name: logstream-leader
type: application
urls:
- https://github.com/criblio/helm-charts/releases/download/v3.1.1/logstream-leader-3.1.1.tgz
version: 3.1.1
- apiVersion: v2
appVersion: 3.1.0
created: "2021-08-27T00:01:38.417954434Z"