-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.yaml
3362 lines (3362 loc) · 120 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:
calico:
- apiVersion: v2
appVersion: 3.28.1
created: "2025-01-30T23:02:41.20827268+01:00"
description: A Helm chart for Calico
digest: 8f03ac67dcbf7b714677d144f7484794df05e8053b3455de4c5f75d748793023
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.7.1.tgz
version: 0.7.1
- apiVersion: v2
appVersion: 3.28.0
created: "2025-01-30T23:02:41.207157871+01:00"
description: A Helm chart for Calico
digest: a148e001799ccdfbdc68828cc1c2dc0b2d232b2589073fb19ef1ee7d077a98dc
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.7.0.tgz
version: 0.7.0
- apiVersion: v2
appVersion: 3.27.3
created: "2025-01-30T23:02:41.205155639+01:00"
description: A Helm chart for Calico
digest: 4821d252533820435f767157e5e406fb4dad01183073bf9c4394f4a9e902cfa6
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.6.2.tgz
version: 0.6.2
- apiVersion: v2
appVersion: 3.27.2
created: "2025-01-30T23:02:41.20377197+01:00"
description: A Helm chart for Calico
digest: 55ff77a16029984512704a26f821dc1263f98a511e221699345c011f62338ab9
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.6.1.tgz
version: 0.6.1
- apiVersion: v2
appVersion: 3.27.0
created: "2025-01-30T23:02:41.202352157+01:00"
description: A Helm chart for Calico
digest: 70a3102c0a17a81dc1aaad56af357147f9f9312ceeb382834a7cb0ff0d0e2410
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.6.0.tgz
version: 0.6.0
- apiVersion: v2
appVersion: 3.26.2
created: "2025-01-30T23:02:41.201009515+01:00"
description: A Helm chart for Calico
digest: 74303b399ee7251f8b96735f968700e0612253c1ac4d414b48f5d1c4a8996955
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.5.2.tgz
version: 0.5.2
- apiVersion: v2
appVersion: 3.26.1
created: "2025-01-30T23:02:41.199649391+01:00"
description: A Helm chart for Calico
digest: 1dd23834b58f4482fa0495813d04e5bdef72f89072a4a69f74e7f8a04d4c72bd
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.5.1.tgz
version: 0.5.1
- apiVersion: v2
appVersion: 3.26.0
created: "2025-01-30T23:02:41.198192712+01:00"
description: A Helm chart for Calico
digest: e35d0d9fc848a4c73f83030c89f4a1845802440693e2cf58dd4ba75e81d72c8f
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.5.0.tgz
version: 0.5.0
- apiVersion: v2
appVersion: 3.25.1
created: "2025-01-30T23:02:41.187912632+01:00"
description: A Helm chart for Calico
digest: 877b77c896bfe219faa384dfbf7af77f950ad7ef5a49b856a689218ef4140484
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.27.tgz
version: 0.4.27
- apiVersion: v2
appVersion: 3.25.0
created: "2025-01-30T23:02:41.186295193+01:00"
description: A Helm chart for Calico
digest: c9fa6f8ade07ce5507455ae4012ff39d5d949072767939e994aa53c8341b22a7
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.26.tgz
version: 0.4.26
- apiVersion: v2
appVersion: 3.24.5
created: "2025-01-30T23:02:41.184505709+01:00"
description: A Helm chart for Calico
digest: 9ba795135a2e0799b2e85d3524032359ac7d37907dd54fe01442a16632a7a1df
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.25.tgz
version: 0.4.25
- apiVersion: v2
appVersion: 3.24.4
created: "2025-01-30T23:02:41.183151694+01:00"
description: A Helm chart for Calico
digest: 748d102e807f9d0d61686134cf7b35221035fdea0dea8994f38aa5d74d3bd563
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.24.tgz
version: 0.4.24
- apiVersion: v2
appVersion: 3.24.3
created: "2025-01-30T23:02:41.181942691+01:00"
description: A Helm chart for Calico
digest: f1b4af6a38aee82927d83575b3b7d5b223f92726bc937e650c474d9c5506030a
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.23.tgz
version: 0.4.23
- apiVersion: v2
appVersion: 3.24.1
created: "2025-01-30T23:02:41.180617876+01:00"
description: A Helm chart for Calico
digest: 8c39f46a8ce64241c6241291d54ae3ddd8f5dc818312241580ec6dfdda71d898
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.22.tgz
version: 0.4.22
- apiVersion: v2
appVersion: 3.24.1
created: "2025-01-30T23:02:41.179199692+01:00"
description: A Helm chart for Calico
digest: 41fd2b0b768e9edc479419c3cdcb7357c759074a3b9d9762eda5c2a8cf4c2beb
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.21.tgz
version: 0.4.21
- apiVersion: v2
appVersion: 3.23.3
created: "2025-01-30T23:02:41.177251634+01:00"
description: A Helm chart for Calico
digest: 2df1cc879488133cbc623cb5a08e33ba232fc13d976016d665fc600b503ad15e
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.20.tgz
version: 0.4.20
- apiVersion: v2
appVersion: 3.23.2
created: "2025-01-30T23:02:41.174764883+01:00"
description: A Helm chart for Calico
digest: f3298a96adedcb6ef387501e43ce920075b2f5eaff4131ecb70b1174f7c81d2c
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.19.tgz
version: 0.4.19
- apiVersion: v2
appVersion: 3.23.1
created: "2025-01-30T23:02:41.173489428+01:00"
description: A Helm chart for Calico
digest: 1bab29e9212fbce0d4fb06f9a1a67a4a0edac752a9b6d4d656245ac5921124e2
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.18.tgz
version: 0.4.18
- apiVersion: v2
appVersion: 3.23.0
created: "2025-01-30T23:02:41.171841163+01:00"
description: A Helm chart for Calico
digest: c078185ee741cd0d785569e356f9151eae4cc9d6614cd6129707803266f54408
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.17.tgz
version: 0.4.17
- apiVersion: v2
appVersion: 3.22.2
created: "2025-01-30T23:02:41.170149629+01:00"
description: A Helm chart for Calico
digest: 4b9d43c8124fa7d08849ea2b418b9f96f2305e3e6b6c3cc0ba52880f2e68f3ab
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.16.tgz
version: 0.4.16
- apiVersion: v2
appVersion: 3.22.1
created: "2025-01-30T23:02:41.169067515+01:00"
description: A Helm chart for Calico
digest: 0baa2f3d4a289710c655c00e275acf2d620fcc37bd99394d181b1cfa0fe7e480
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.15.tgz
version: 0.4.15
- apiVersion: v2
appVersion: 3.22.0
created: "2025-01-30T23:02:41.167905807+01:00"
description: A Helm chart for Calico
digest: 4f34c1d386df961710506acb9361d8ca2e82e348eda733d5d9b3dd867356ad9a
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.14.tgz
version: 0.4.14
- apiVersion: v2
appVersion: 3.21.2
created: "2025-01-30T23:02:41.166663276+01:00"
description: A Helm chart for Calico
digest: 1265c5fca8218c4c6b114acc0f51ec9b794435438bb83140ddd197c701769e1d
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.13.tgz
version: 0.4.13
- apiVersion: v2
appVersion: 3.21.1
created: "2025-01-30T23:02:41.165447158+01:00"
description: A Helm chart for Calico
digest: 1861df5e8adf3c1dcb635bec679c68e5f7c58bdd89b81e277efa3951d5793f7c
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.12.tgz
version: 0.4.12
- apiVersion: v2
appVersion: 3.21.0
created: "2025-01-30T23:02:41.164310207+01:00"
description: A Helm chart for Calico
digest: 51cceab65712bee843e116beb98c23fec84a7090f9a403478cfb58dbb4fff1be
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.11.tgz
version: 0.4.11
- apiVersion: v2
appVersion: 3.20.0
created: "2025-01-30T23:02:41.162786155+01:00"
description: A Helm chart for Calico
digest: 9c83de5520a135d509af0780e3c439d61642d02f7940e462d6ca4eb69f18159c
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.10.tgz
version: 0.4.10
- apiVersion: v2
appVersion: 3.19.1
created: "2025-01-30T23:02:41.196634442+01:00"
description: A Helm chart for Calico
digest: eaa1f8f776dc654f21edea55cea1f8613dc102c2bd1fc5c87a7805b6aaa6d67a
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.9.tgz
version: 0.4.9
- apiVersion: v2
appVersion: 3.19.0
created: "2025-01-30T23:02:41.195581653+01:00"
description: A Helm chart for Calico
digest: 8a8f074c2d111293894230f3a519059d80a4e4abe9b99b8dc61d4ae054e4b0cc
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.8.tgz
version: 0.4.8
- apiVersion: v2
appVersion: 3.18.2
created: "2025-01-30T23:02:41.194439009+01:00"
description: A Helm chart for Calico
digest: 6ce7f8be05154d5b1774ad0b07e957411d686f771c5b929162acd8d60415de73
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.7.tgz
version: 0.4.7
- apiVersion: v2
appVersion: 3.18.1
created: "2025-01-30T23:02:41.192946447+01:00"
description: A Helm chart for Calico
digest: ba9e6f062a60ce0c83673f5cef2d42aaac4bf5152be7a843f9a7f0ea1554d5ae
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.6.tgz
version: 0.4.6
- apiVersion: v2
appVersion: 3.18.0
created: "2025-01-30T23:02:41.191245726+01:00"
description: A Helm chart for Calico
digest: fb8cd191ebf45df117e43e4c4ba78cbbd410f717ee5aa6402b137ebd823c3043
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.5.tgz
version: 0.4.5
- apiVersion: v2
appVersion: 3.17.3
created: "2025-01-30T23:02:41.190089158+01:00"
description: A Helm chart for Calico
digest: 2686038a2eaf9c2dc922690b52a5bba2e8d34ab52c9289032bd4891698d2c366
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.4.tgz
version: 0.4.4
- apiVersion: v2
appVersion: 3.17.2
created: "2025-01-30T23:02:41.1889433+01:00"
description: A Helm chart for Calico
digest: 3a926532c38641beda04e165659e6497f9a9541e0cb654f0497ca048a3a865de
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.3.tgz
version: 0.4.3
- apiVersion: v2
appVersion: 3.17.1
created: "2025-01-30T23:02:41.17595691+01:00"
description: A Helm chart for Calico
digest: 3b55af40edf9bd4b28e5f756d18b50527fb462d11b6fe820d16df37710741d0d
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.2.tgz
version: 0.4.2
- apiVersion: v2
appVersion: 3.17.0
created: "2025-01-30T23:02:41.161643836+01:00"
description: A Helm chart for Calico
digest: 545cb5cc9dc25df70800108b5c185be6be6d322af400c6790aaee9da7167a7b4
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.1.tgz
version: 0.4.1
- apiVersion: v2
appVersion: 3.17.0
created: "2025-01-30T23:02:41.160488002+01:00"
description: A Helm chart for Calico
digest: 4b6232f843201107faa7e1efc44d3e199bf5c3069888de1f2290f3c67ca4dfec
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
appVersion: 3.16.5
created: "2025-01-30T23:02:41.159478933+01:00"
description: A Helm chart for Calico
digest: 1183db8177259a525e3558d1c8295008879fcb8b59f4b9a160e38da045bed9bb
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
appVersion: 3.16.5
created: "2025-01-30T23:02:41.132509426+01:00"
description: A Helm chart for Calico
digest: 93b74a674b187769ad977a0efbc92645502fa30cefa3087feeb45ae4e1304b3a
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.10.tgz
version: 0.2.10
- apiVersion: v2
appVersion: 3.16.4
created: "2025-01-30T23:02:41.1583201+01:00"
description: A Helm chart for Calico
digest: 8991b2bfe8625e0f0ef992b835cca13e174f20c9a2242ee0f35e0e688f6f9f6e
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.9.tgz
version: 0.2.9
- apiVersion: v2
appVersion: 3.16.3
created: "2025-01-30T23:02:41.156991732+01:00"
description: A Helm chart for Calico
digest: c24837e95a5c5b8d1ffb606dfbcb4d4cc302a67c96c4d563480e19ba7bd36345
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.8.tgz
version: 0.2.8
- apiVersion: v2
appVersion: 3.16.2
created: "2025-01-30T23:02:41.155879833+01:00"
description: A Helm chart for Calico
digest: 9f8a60667bae0d803ac3552c3953ff32865ff7abb7744caead8669cb9da47a8e
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.7.tgz
version: 0.2.7
- apiVersion: v2
appVersion: 3.16.1
created: "2025-01-30T23:02:41.154441045+01:00"
description: A Helm chart for Calico
digest: 81117a64fea28a590aee64ddbfd6fb1637c3141a50ac79380e01a0485fa19e8a
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.6.tgz
version: 0.2.6
- apiVersion: v2
appVersion: 3.16.1
created: "2025-01-30T23:02:41.153428219+01:00"
description: A Helm chart for Calico
digest: 8e8dfe4f2e37b7c86974ede321e7efd7797534ecd089201c0dcbaf81e0322b0f
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.5.tgz
version: 0.2.5
- apiVersion: v2
appVersion: 3.16.0
created: "2025-01-30T23:02:41.152222338+01:00"
description: A Helm chart for Calico
digest: 7f62b3b8e0cbdbf9f9cf7209f61bb0a77893f38493a16f7bd31b007070774784
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.4.tgz
version: 0.2.4
- apiVersion: v2
appVersion: 3.15.2
created: "2025-01-30T23:02:41.134338111+01:00"
description: A Helm chart for Calico
digest: 3174179316cc38bf1ea864d7b72eebf8fcca2c31b24232d8638614107df60eff
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.3.tgz
version: 0.2.3
- apiVersion: v2
appVersion: 3.15.1
created: "2025-01-30T23:02:41.133438531+01:00"
description: A Helm chart for Calico
digest: acf86719018a9d767b68ffadc2a391f01e1571a88c660e8d51cb31239cf1a1ee
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.2.tgz
version: 0.2.2
- apiVersion: v2
appVersion: 3.14.0
created: "2025-01-30T23:02:41.131510688+01:00"
description: A Helm chart for Calico
digest: 0c63e6217e6e28b5e5756099cb08105752917a6d49feef24e86b677b5f2f58f6
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.1.tgz
version: 0.2.1
- apiVersion: v2
appVersion: 3.14.0
created: "2025-01-30T23:02:41.13111723+01:00"
description: A Helm chart for Calico
digest: 4564e8441af6736e04c6a8f928b75a5231d2086215bd971a0c7727f1e8906372
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
appVersion: 3.13.3
created: "2025-01-30T23:02:41.130720011+01:00"
description: A Helm chart for Calico
digest: 9c05d191222f0c381d1d8f200d09ce2e6896a625e53a2c762568b62ae13d1540
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
appVersion: 3.13.3
created: "2025-01-30T23:02:41.130060552+01:00"
description: A Helm chart for Calico
digest: e36a51965c4ce11bf8455ce039c45ed2825d1714a86138639cd021d3194f728d
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: 3.13.2
created: "2025-01-30T23:02:41.129418558+01:00"
description: A Helm chart for Calico
digest: 0c0c4a56dc65c05731f75e89e456529944c2059ca19f4433a921e3859df8cf14
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
appVersion: 3.13.1
created: "2025-01-30T23:02:41.129044435+01:00"
description: A Helm chart for Calico
digest: 81616cc0973581ac2b4496d5259cf5feaa02ce4fc6811d54f1c54d9e89d685f9
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: 3.12.0
created: "2025-01-30T23:02:41.128651809+01:00"
description: A Helm chart for Calico
digest: 7a843a11bbfe76558912ac494c24e948730115ad4815eaed3e969bd7e82c2a9b
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: 3.12.0
created: "2025-01-30T23:02:41.128290543+01:00"
description: A Helm chart for Calico
digest: a8d7dbceb42182823966c1f5451b3b7786b55833212b20f6db9f07c6eb10fb93
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: 3.11.2
created: "2025-01-30T23:02:41.127938972+01:00"
description: A Helm chart for Calico
digest: 90568b01090fb73053edc96d031f44041c6912212be4e408907cf746e5b0eac4
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 3.11.1
created: "2025-01-30T23:02:41.127527749+01:00"
description: A Helm chart for Calico
digest: 608670a367a5598dc61932ac4c299073ecd60722b7fc993613520c9c285e2bfd
name: calico
type: application
urls:
- https://flexkube.github.io/charts/calico-0.1.0.tgz
version: 0.1.0
coredns:
- apiVersion: v2
appVersion: 1.9.3
created: "2025-01-30T23:02:41.213240005+01:00"
description: CoreDNS is a DNS server that chains plugins and provides Kubernetes
DNS Services
digest: 1fe60085ff498fd6551a3eecc66049488bba6bfb7c9987b4dbe5af15c2e0e9f1
home: https://coredns.io
icon: https://coredns.io/images/CoreDNS_Colour_Horizontal.png
keywords:
- coredns
- dns
- kubedns
maintainers:
- email: [email protected]
name: invidian
name: coredns
sources:
- https://github.com/coredns/coredns
urls:
- https://flexkube.github.io/charts/coredns-2.0.6.tgz
version: 2.0.6
- apiVersion: v2
appVersion: 1.8.6
created: "2025-01-30T23:02:41.212506565+01:00"
description: CoreDNS is a DNS server that chains plugins and provides Kubernetes
DNS Services
digest: c4dce940ae6ff5957832380999a9fdb8c844dc515ec9309d98565c37c0c6463e
home: https://coredns.io
icon: https://coredns.io/images/CoreDNS_Colour_Horizontal.png
keywords:
- coredns
- dns
- kubedns
maintainers:
- email: [email protected]
name: invidian
name: coredns
sources:
- https://github.com/coredns/coredns
urls:
- https://flexkube.github.io/charts/coredns-2.0.4.tgz
version: 2.0.4
- apiVersion: v2
appVersion: 1.8.4
created: "2025-01-30T23:02:41.211441759+01:00"
description: CoreDNS is a DNS server that chains plugins and provides Kubernetes
DNS Services
digest: 75ab069324d331ef9b2314dcabab56cbe0faba1addcf5bfaf5f53e5262f9c392
home: https://coredns.io
icon: https://coredns.io/images/CoreDNS_Colour_Horizontal.png
keywords:
- coredns
- dns
- kubedns
maintainers:
- email: [email protected]
name: invidian
name: coredns
sources:
- https://github.com/coredns/coredns
urls:
- https://flexkube.github.io/charts/coredns-2.0.3.tgz
version: 2.0.3
- apiVersion: v2
appVersion: 1.8.3
created: "2025-01-30T23:02:41.210396706+01:00"
description: CoreDNS is a DNS server that chains plugins and provides Kubernetes
DNS Services
digest: 3b1d72d28299b5395c0b0c1b28b5fc48d9381600e77fa51aeb13155c2da2ae2a
home: https://coredns.io
icon: https://coredns.io/images/CoreDNS_Colour_Horizontal.png
keywords:
- coredns
- dns
- kubedns
maintainers:
- email: [email protected]
name: invidian
name: coredns
sources:
- https://github.com/coredns/coredns
urls:
- https://flexkube.github.io/charts/coredns-2.0.2.tgz
version: 2.0.2
- apiVersion: v2
appVersion: 1.8.0
created: "2025-01-30T23:02:41.209343558+01:00"
description: CoreDNS is a DNS server that chains plugins and provides Kubernetes
DNS Services
digest: c3dedf276bd13fd5f6f8f9eb5c5c6d95157e408e1ac5a599d4fe397665e02565
home: https://coredns.io
icon: https://coredns.io/images/CoreDNS_Colour_Horizontal.png
keywords:
- coredns
- dns
- kubedns
maintainers:
- email: [email protected]
name: invidian
name: coredns
sources:
- https://github.com/coredns/coredns
urls:
- https://flexkube.github.io/charts/coredns-2.0.0.tgz
version: 2.0.0
hcloud-csi:
- apiVersion: v2
appVersion: 2.6.0
created: "2025-01-30T23:02:41.218126462+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: 4aa56e5e64f6a893f75c624765cdb0ba2221637ef37b0725a6b178f0339f910e
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
appVersion: 1.6.0
created: "2025-01-30T23:02:41.215464084+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: edb63a045421cf9cd17fb93f4094b3e981b39436f95f6eb8e6ad8de9c93f9e5c
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.13.tgz
version: 0.1.13
- apiVersion: v2
appVersion: 1.6.0
created: "2025-01-30T23:02:41.214972949+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: 6d7f706bbfc0d780f61f0bf4e489a4807f3f03216423c438c6010329b16eaec8
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.12.tgz
version: 0.1.12
- apiVersion: v2
appVersion: 1.6.0
created: "2025-01-30T23:02:41.214346714+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: c6ac75647c495f5f9fcaa482134286127438845f99ec5587ef3dba3ba8e913e4
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.11.tgz
version: 0.1.11
- apiVersion: v2
appVersion: 1.5.3
created: "2025-01-30T23:02:41.214068266+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: 9caf76f1711f63197dcbf98ff44ebe68d26906486a7db064c1c260a989ad8ba0
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.10.tgz
version: 0.1.10
- apiVersion: v2
appVersion: 1.5.1
created: "2025-01-30T23:02:41.217942048+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: b89ba77fd38ea67deb1bbf92e8a8ead00cdf7f1504ffa9c3ba2e4014139e5c57
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.9.tgz
version: 0.1.9
- apiVersion: v2
appVersion: 1.4.0
created: "2025-01-30T23:02:41.217651829+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: bbdf3a840d10cb0ed1804c6fb382c153cb06ae01b60f06a54b2f61c301c28d88
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.8.tgz
version: 0.1.8
- apiVersion: v2
appVersion: 1.4.0
created: "2025-01-30T23:02:41.217363627+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: 9755a2169414fbc3499eccbdb331ddb0524f395b42984a23d6c97591cfeda7e7
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
appVersion: 1.4.0
created: "2025-01-30T23:02:41.21699981+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: c01bd97fe28695006d9a89efefaa02ceb714d6591025850948859401b17487e4
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: 1.3.2
created: "2025-01-30T23:02:41.216723824+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: ba2777f138fb065728e713ce1833e0ea04f27129bc2976357d7821223648c7c5
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
appVersion: 1.3.1
created: "2025-01-30T23:02:41.216439673+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: d066b1243b9121dad55b6344ed46c3a63180fa8437f2ea08ba3b04ed27624669
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: 1.2.3
created: "2025-01-30T23:02:41.216114981+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: 98afb9dd50cb743a7eb126baad3285ea1d0522ed9fb1eab59f503aa7e9bb8de4
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: 1.2.3
created: "2025-01-30T23:02:41.21579071+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: 99a5059708f885eef99da0a7cd80f1613db96e128a12254279fa212d4fa44f1f
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: 1.2.3
created: "2025-01-30T23:02:41.213781063+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: c1b4fa862e4ff18366aa9b4438b11465456e636833257b5a3e3aa93f6afd27ae
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 1.2.3
created: "2025-01-30T23:02:41.213510322+01:00"
description: A Helm chart for Container Storage Interface driver for Hetzner Cloud.
digest: a9302b468b9095183a049f96c7f86b49c10713fee3f6a82d210da3c3b878c6b7
name: hcloud-csi
type: application
urls:
- https://flexkube.github.io/charts/hcloud-csi-0.1.0.tgz
version: 0.1.0
kube-apiserver:
- apiVersion: v2
appVersion: 1.32.1
created: "2025-01-30T23:02:41.228008015+01:00"
description: kube-apiserver Helm chart.
digest: fc4f54e70298deba69deac44e1f31452c7a882660082802cf24b692b8f2c4439
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.12.0.tgz
version: 0.12.0
- apiVersion: v2
appVersion: 1.31.0
created: "2025-01-30T23:02:41.227650388+01:00"
description: kube-apiserver Helm chart.
digest: 56f7c47c4882b5217cbdb616c8f7b085222cb56e2ef0b06c1ce9add6175ed8d1
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.11.0.tgz
version: 0.11.0
- apiVersion: v2
appVersion: 1.30.2
created: "2025-01-30T23:02:41.227094804+01:00"
description: kube-apiserver Helm chart.
digest: 8378949170e6b3208746a4065fb37b521f50088740a2fbcf5c5b60efd913c6ab
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.10.1.tgz
version: 0.10.1
- apiVersion: v2
appVersion: 1.30.1
created: "2025-01-30T23:02:41.22656418+01:00"
description: kube-apiserver Helm chart.
digest: bd90992cd68e6cdc262084f0dfe02d6883333002c2f307a6b88ade7daa9c3b17
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.10.0.tgz
version: 0.10.0
- apiVersion: v2
appVersion: 1.29.3
created: "2025-01-30T23:02:41.260494719+01:00"
description: kube-apiserver Helm chart.
digest: b624f7659a63d93ba2664daf45d71872846ad449eef8bb3487f9abd4c7f47e96
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.9.3.tgz
version: 0.9.3
- apiVersion: v2
appVersion: 1.29.2
created: "2025-01-30T23:02:41.259954234+01:00"
description: kube-apiserver Helm chart.
digest: 025bcab4bcff5bb1caf10e9ccc5a3ee83ff93b9608e766ee7c16478e939c6477
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.9.2.tgz
version: 0.9.2
- apiVersion: v2
appVersion: 1.29.1
created: "2025-01-30T23:02:41.259313885+01:00"
description: kube-apiserver Helm chart.
digest: eedf4be9ffe6c6cc78a1fff72059f152e6adb2da84b1c2960ca99dd7e6963651
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.9.1.tgz
version: 0.9.1
- apiVersion: v2
appVersion: 1.29.0
created: "2025-01-30T23:02:41.258703611+01:00"
description: kube-apiserver Helm chart.
digest: 6d5a1813dff3c2a1a408607d215de9983127784984e1ccb2a4eb8ba1fc8ae452
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.9.0.tgz
version: 0.9.0
- apiVersion: v2
appVersion: 1.28.3
created: "2025-01-30T23:02:41.257972891+01:00"
description: kube-apiserver Helm chart.
digest: 8f993c4b28408d71a0ad93e505caae5eb2b65e3ccbf44fbde148e87f89cbf83b
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.8.1.tgz
version: 0.8.1
- apiVersion: v2
appVersion: 1.28.1
created: "2025-01-30T23:02:41.257330425+01:00"
description: kube-apiserver Helm chart.
digest: 10ea31947974bbd1a0ea34cc2cdb523303fee76c6464dcf1fd2bce7668609f35
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.8.0.tgz
version: 0.8.0
- apiVersion: v2
appVersion: 1.27.4
created: "2025-01-30T23:02:41.256491827+01:00"
description: kube-apiserver Helm chart.
digest: f1f31ea47ffab6985dfe4734a53cc5eeb86823ae3e9e791669648149e2c2237c
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.7.4.tgz
version: 0.7.4
- apiVersion: v2
appVersion: 1.27.3
created: "2025-01-30T23:02:41.256022416+01:00"
description: kube-apiserver Helm chart.
digest: 5142b7ba59066250d3f2602907bbe1ad057bb7ba2816aa2dc2056fc560cbc084
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.7.3.tgz
version: 0.7.3
- apiVersion: v2
appVersion: 1.27.2
created: "2025-01-30T23:02:41.255545212+01:00"
description: kube-apiserver Helm chart.
digest: 81a14b537979f6e711cefa99dc71d961747e7f53059ceafa89e20f201d401d7e
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.7.2.tgz
version: 0.7.2
- apiVersion: v2
appVersion: 1.27.1
created: "2025-01-30T23:02:41.255075713+01:00"
description: kube-apiserver Helm chart.
digest: 57ab3d250e310a8d52b974df6ae696574ff854d6a0eda6f00b1c1e4ab884fad4
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.7.1.tgz
version: 0.7.1
- apiVersion: v2
appVersion: 1.27.0
created: "2025-01-30T23:02:41.254601823+01:00"
description: kube-apiserver Helm chart.
digest: 6d1ab8738d33deb7b13bd1f3ebdb23efeefccfe02004c82c12c56878325f0909
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.7.0.tgz
version: 0.7.0
- apiVersion: v2
appVersion: 1.26.3
created: "2025-01-30T23:02:41.254111867+01:00"
description: kube-apiserver Helm chart.
digest: 3bd1f4ee4fffea5c0c57edd48bd0b7110f6f2d382467da3bdb258096b23aa160
icon: https://flexkube.github.io/assets/logo.png
name: kube-apiserver
type: application
urls:
- https://flexkube.github.io/charts/kube-apiserver-0.6.3.tgz
version: 0.6.3
- apiVersion: v2
appVersion: 1.26.2
created: "2025-01-30T23:02:41.253230323+01:00"