-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
2351 lines (2351 loc) · 83.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:
apm-server:
- apiVersion: v1
appVersion: 7.9.3
created: "2024-08-04T01:03:40.738228+07:00"
description: Official Elastic helm chart for Elastic APM Server
digest: b66b636bef3835ff1857c468c96885e71a1407aa377042e7a1470de1322a3030
home: https://github.com/elastic/helm-charts
icon: https://helm.elastic.co/icons/apm.png
maintainers:
- email: [email protected]
name: Elastic
name: apm-server
sources:
- https://github.com/elastic/apm
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/apm-server-7.9.3.tgz
version: 7.9.3
aws-efs-csi-driver:
- apiVersion: v2
appVersion: 1.5.7
created: "2024-08-04T01:03:40.662702+07:00"
description: A Helm chart for AWS EFS CSI Driver
digest: e3955ac31af252011e71e9bb9ff2f923f059a142a7bcdcb9b4c826965282a6fb
home: https://github.com/kubernetes-sigs/aws-efs-csi-driver
keywords:
- aws
- efs
- csi
kubeVersion: '>=1.17.0-0'
maintainers:
- name: leakingtapan
url: https://github.com/leakingtapan
- name: krmichel
url: https://github.com/krmichel
name: aws-efs-csi-driver
sources:
- https://github.com/kubernetes-sigs/aws-efs-csi-driver
urls:
- https://kingpowerclick.github.io/helm-chart/package/aws/aws-efs-csi-driver-2.4.6.tgz
version: 2.4.6
cert-manager:
- annotations:
artifacthub.io/prerelease: "false"
artifacthub.io/signKey: |
fingerprint: 1020CF3C033D4F35BAE1C19E1226061C665DF13E
url: https://cert-manager.io/public-keys/cert-manager-keyring-2021-09-20-1020CF3C033D4F35BAE1C19E1226061C665DF13E.gpg
apiVersion: v1
appVersion: v1.9.1
created: "2024-08-04T01:03:40.690741+07:00"
description: A Helm chart for cert-manager
digest: 46273177b5ca6930af8047cd52bf0b784c8482ac042e7812d08643c2898692d5
home: https://github.com/cert-manager/cert-manager
icon: https://raw.githubusercontent.com/cert-manager/cert-manager/d53c0b9270f8cd90d908460d69502694e1838f5f/logo/logo-small.png
keywords:
- cert-manager
- kube-lego
- letsencrypt
- tls
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: [email protected]
name: cert-manager-maintainers
url: https://cert-manager.io
name: cert-manager
sources:
- https://github.com/cert-manager/cert-manager
urls:
- https://kingpowerclick.github.io/helm-chart/package/cert-manager/cert-manager-v1.9.1.tgz
version: v1.9.1
- annotations:
artifacthub.io/prerelease: "false"
apiVersion: v1
appVersion: v1.6.3
created: "2024-08-04T01:03:40.685399+07:00"
description: A Helm chart for cert-manager
digest: 4baf9d05c7ec1e58cb64d4eb638b1ea4b69d04549b39d0692764e2b329a91d9a
home: https://github.com/jetstack/cert-manager
icon: https://raw.githubusercontent.com/jetstack/cert-manager/master/logo/logo.png
keywords:
- cert-manager
- kube-lego
- letsencrypt
- tls
maintainers:
- email: [email protected]
name: cert-manager-maintainers
name: cert-manager
sources:
- https://github.com/jetstack/cert-manager
urls:
- https://kingpowerclick.github.io/helm-chart/package/cert-manager/cert-manager-v1.6.3.tgz
version: v1.6.3
- annotations:
artifacthub.io/prerelease: "false"
apiVersion: v1
appVersion: v1.4.0
created: "2024-08-04T01:03:40.677098+07:00"
description: A Helm chart for cert-manager
digest: 22e83a70b113bcaca33f11a0d883b170081e45bd00199be6dd8df1a3d3191d5e
home: https://github.com/jetstack/cert-manager
icon: https://raw.githubusercontent.com/jetstack/cert-manager/master/logo/logo.png
keywords:
- cert-manager
- kube-lego
- letsencrypt
- tls
maintainers:
- email: [email protected]
name: cert-manager-maintainers
name: cert-manager
sources:
- https://github.com/jetstack/cert-manager
urls:
- https://kingpowerclick.github.io/helm-chart/package/cert-manager/cert-manager-v1.4.0.tgz
version: v1.4.0
- apiVersion: v1
appVersion: v0.6.2
created: "2024-08-04T01:03:40.664737+07:00"
dependencies:
- condition: webhook.enabled
name: webhook
repository: file://webhook
version: v0.6.4
description: A Helm chart for cert-manager
digest: 3fd583ec4b5e92b4748d72d11b5ccf1f963babf67f8252e86a4bd28e85b62d5e
home: https://github.com/jetstack/cert-manager
keywords:
- cert-manager
- kube-lego
- letsencrypt
- tls
maintainers:
- email: [email protected]
name: munnerz
name: cert-manager
sources:
- https://github.com/jetstack/cert-manager
urls:
- https://kingpowerclick.github.io/helm-chart/package/cert-manager/cert-manager-v0.6.6.tgz
version: v0.6.6
cluster-autoscaler:
- apiVersion: v2
appVersion: 1.24.0
created: "2024-08-04T01:03:40.661829+07:00"
description: Scales Kubernetes worker nodes within autoscaling groups.
digest: df68e7b664225676df1b93d3bdc12314ebb5e20e58fe1da18aec4b4d6c054fbd
home: https://github.com/kubernetes/autoscaler
icon: https://github.com/kubernetes/kubernetes/raw/master/logo/logo.png
maintainers:
- email: [email protected]
name: gjtempleton
name: cluster-autoscaler
sources:
- https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/autoscaler/cluster-autoscaler-9.26.0.tgz
version: 9.26.0
- apiVersion: v1
appVersion: 1.14.5
created: "2024-08-04T01:03:40.658801+07:00"
description: Scales worker nodes within autoscaling groups.
digest: 3cb3b5ade00c8dc2ebf5e67e990e07e0b047f9bc1f623989cb506bc45b16fca2
home: https://github.com/kubernetes/autoscaler
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
maintainers:
- email: [email protected]
name: mgoodness
- email: [email protected]
name: yurrriq
name: cluster-autoscaler
sources:
- https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler
- https://github.com/spotinst/kubernetes-autoscaler/tree/master/cluster-autoscaler
urls:
- https://kingpowerclick.github.io/helm-chart/package/autoscaler/cluster-autoscaler-6.0.0.tgz
version: 6.0.0
common:
- annotations:
category: Infrastructure
apiVersion: v2
appVersion: 1.8.0
created: "2024-08-04T01:03:40.663695+07:00"
description: A Library Helm Chart for grouping common logic between bitnami charts.
This chart is not deployable by itself.
digest: 7f07999c42a7ac45bf19f8b6341613f3a6f890772ce1af3626b051940e9792d4
home: https://github.com/bitnami/charts/tree/master/bitnami/common
icon: https://bitnami.com/downloads/logos/bitnami-mark.png
keywords:
- common
- helper
- template
- function
- bitnami
maintainers:
- email: [email protected]
name: Bitnami
name: common
sources:
- https://github.com/bitnami/charts
- http://www.bitnami.com/
type: library
urls:
- https://kingpowerclick.github.io/helm-chart/package/bitnami/common-1.9.1.tgz
version: 1.9.1
datahub:
- apiVersion: v2
appVersion: 0.10.4
created: "2024-08-04T01:03:40.702517+07:00"
dependencies:
- condition: datahub-gms.enabled
name: datahub-gms
repository: file://./subcharts/datahub-gms
version: 0.2.150
- condition: datahub-frontend.enabled
name: datahub-frontend
repository: file://./subcharts/datahub-frontend
version: 0.2.139
- condition: global.datahub_standalone_consumers_enabled
name: datahub-mae-consumer
repository: file://./subcharts/datahub-mae-consumer
version: 0.2.146
- condition: global.datahub_standalone_consumers_enabled
name: datahub-mce-consumer
repository: file://./subcharts/datahub-mce-consumer
version: 0.2.149
- condition: datahub-ingestion-cron.enabled
name: datahub-ingestion-cron
repository: file://./subcharts/datahub-ingestion-cron
version: 0.2.134
- condition: acryl-datahub-actions.enabled
name: acryl-datahub-actions
repository: file://./subcharts/acryl-datahub-actions
version: 0.2.138
description: A Helm chart for LinkedIn DataHub
digest: 57b518d65e7799ef8977ec68549b68df23b9d17e71e874c63b7c4093afb2c82f
maintainers:
- email: [email protected]
name: DataHub
name: datahub
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/datahub/datahub-0.2.180.tgz
version: 0.2.180
- apiVersion: v2
appVersion: 0.10.4
created: "2024-08-04T01:03:40.696342+07:00"
dependencies:
- condition: datahub-gms.enabled
name: datahub-gms
repository: file://./subcharts/datahub-gms
version: 0.2.149
- condition: datahub-frontend.enabled
name: datahub-frontend
repository: file://./subcharts/datahub-frontend
version: 0.2.139
- condition: global.datahub_standalone_consumers_enabled
name: datahub-mae-consumer
repository: file://./subcharts/datahub-mae-consumer
version: 0.2.145
- condition: global.datahub_standalone_consumers_enabled
name: datahub-mce-consumer
repository: file://./subcharts/datahub-mce-consumer
version: 0.2.147
- condition: datahub-ingestion-cron.enabled
name: datahub-ingestion-cron
repository: file://./subcharts/datahub-ingestion-cron
version: 0.2.133
- condition: acryl-datahub-actions.enabled
name: acryl-datahub-actions
repository: file://./subcharts/acryl-datahub-actions
version: 0.2.138
description: A Helm chart for LinkedIn DataHub
digest: 87e25771a5d46f10158be35e384287c706eb5b9885ad7901282284a28f75e474
maintainers:
- email: [email protected]
name: DataHub
name: datahub
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/datahub/datahub-0.2.175.tgz
version: 0.2.175
datahub-prerequisites:
- apiVersion: v2
created: "2024-08-04T01:03:40.721529+07:00"
dependencies:
- condition: elasticsearch.enabled
name: elasticsearch
repository: https://helm.elastic.co
version: 7.17.3
- condition: neo4j.enabled
name: neo4j
repository: https://neo4j-contrib.github.io/neo4j-helm/
version: 4.2.2-1
- condition: neo4j-community.enabled
name: neo4j-community
repository: https://equinor.github.io/helm-charts/charts/
version: 1.2.5
- condition: mysql.enabled
name: mysql
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
version: 9.1.8
- condition: postgresql.enabled
name: postgresql
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
version: 11.2.6
- condition: gcloud-sqlproxy.enabled
name: gcloud-sqlproxy
repository: https://charts.rimusz.net
version: 0.24.1
- condition: cp-helm-charts.enabled
name: cp-helm-charts
repository: https://confluentinc.github.io/cp-helm-charts/
version: 0.6.0
- condition: kafka.enabled
name: kafka
repository: https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
version: 22.1.3
description: A Helm chart for packages that Datahub depends on
digest: 9682c19393dfb259cd69e2d1feaa7c7e9f199387a5bb5234c68d4f98e4ab58ae
maintainers:
- email: [email protected]
name: DataHub
name: datahub-prerequisites
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/datahub/datahub-prerequisites-0.0.18.tgz
version: 0.0.18
dynatrace-operator:
- apiVersion: v2
appVersion: 1.2.1
created: "2024-08-04T01:03:40.737295+07:00"
description: The Dynatrace Operator Helm chart for Kubernetes and OpenShift
digest: 905a572732a70d85ebd263704d475c3a674cf01df9cd5ae59d0b9846fbdb7515
home: https://www.dynatrace.com/
icon: https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: 0sewa0
- email: [email protected]
name: chrismuellner
- email: [email protected]
name: luhi-DT
name: dynatrace-operator
sources:
- https://github.com/Dynatrace/dynatrace-operator
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/dynatrace/dynatrace-operator-1.2.1.tgz
version: 1.2.1
- apiVersion: v2
appVersion: 1.2.0
created: "2024-08-04T01:03:40.734797+07:00"
description: The Dynatrace Operator Helm chart for Kubernetes and OpenShift
digest: c3ad2d10a804fd7cc974884e14440f5c32d935df6122a28f7aee277ee2ba91ea
home: https://www.dynatrace.com/
icon: https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: 0sewa0
- email: [email protected]
name: chrismuellner
- email: [email protected]
name: luhi-DT
name: dynatrace-operator
sources:
- https://github.com/Dynatrace/dynatrace-operator
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/dynatrace/dynatrace-operator-1.2.0.tgz
version: 1.2.0
- apiVersion: v2
appVersion: 1.1.1
created: "2024-08-04T01:03:40.732899+07:00"
description: The Dynatrace Operator Helm chart for Kubernetes and OpenShift
digest: 36fb41840a866c366a739573fd19b24864763f1a1c452dfd3d8891f5fff32d26
home: https://www.dynatrace.com/
icon: https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: 0sewa0
- email: [email protected]
name: chrismuellner
- email: [email protected]
name: luhi-DT
name: dynatrace-operator
sources:
- https://github.com/Dynatrace/dynatrace-operator
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/dynatrace/dynatrace-operator-1.1.1.tgz
version: 1.1.1
- apiVersion: v2
appVersion: 1.1.0
created: "2024-08-04T01:03:40.731169+07:00"
description: The Dynatrace Operator Helm chart for Kubernetes and OpenShift
digest: ebbca58f973dc02249db624ea4d333e3d6f9ed0777c0b197a5eb9ae8d28fc7d8
home: https://www.dynatrace.com/
icon: https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: 0sewa0
- email: [email protected]
name: chrismuellner
- email: [email protected]
name: luhi-DT
name: dynatrace-operator
sources:
- https://github.com/Dynatrace/dynatrace-operator
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/dynatrace/dynatrace-operator-1.1.0.tgz
version: 1.1.0
- apiVersion: v2
appVersion: 1.0.1
created: "2024-08-04T01:03:40.728758+07:00"
description: The Dynatrace Operator Helm chart for Kubernetes and OpenShift
digest: bb09ace27773fdf74f2a5f9b3ea40077cf6ec9ad2fef7e2023ec5b9a00c1bc4a
home: https://www.dynatrace.com/
icon: https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: 0sewa0
- email: [email protected]
name: chrismuellner
- email: [email protected]
name: luhi-DT
name: dynatrace-operator
sources:
- https://github.com/Dynatrace/dynatrace-operator
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/dynatrace/dynatrace-operator-1.0.1.tgz
version: 1.0.1
- apiVersion: v2
appVersion: 1.0.0
created: "2024-08-04T01:03:40.727162+07:00"
description: The Dynatrace Operator Helm chart for Kubernetes and OpenShift
digest: 7e5d6236edf1e99636f972875871a2fa62bec4d6566bd8d2c99da85f40b3af18
home: https://www.dynatrace.com/
icon: https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: 0sewa0
- email: [email protected]
name: chrismuellner
- email: [email protected]
name: luhi-DT
name: dynatrace-operator
sources:
- https://github.com/Dynatrace/dynatrace-operator
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/dynatrace/dynatrace-operator-1.0.0.tgz
version: 1.0.0
- apiVersion: v2
appVersion: 0.15.0
created: "2024-08-04T01:03:40.72551+07:00"
description: The Dynatrace Operator Helm chart for Kubernetes and OpenShift
digest: aef6636ec6b759c3674a59b0e3be88e0dda2e18e69cdfa83d1b1b13866eadecb
home: https://www.dynatrace.com/
icon: https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: 0sewa0
- email: [email protected]
name: chrismuellner
- email: [email protected]
name: luhi-DT
name: dynatrace-operator
sources:
- https://github.com/Dynatrace/dynatrace-operator
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/dynatrace/dynatrace-operator-0.15.0.tgz
version: 0.15.0
- apiVersion: v2
appVersion: 0.14.2
created: "2024-08-04T01:03:40.723176+07:00"
description: The Dynatrace Operator Helm chart for Kubernetes and OpenShift
digest: b26241d92f3a814ef5f0d0e0ad2f0d6219d5bbb5c336de4c48077b6fd387a214
home: https://www.dynatrace.com/
icon: https://assets.dynatrace.com/global/resources/Signet_Logo_RGB_CP_512x512px.png
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: 0sewa0
- email: [email protected]
name: chrismuellner
- email: [email protected]
name: luhi-DT
name: dynatrace-operator
sources:
- https://github.com/Dynatrace/dynatrace-operator
type: application
urls:
- https://kingpowerclick.github.io/helm-chart/package/dynatrace/dynatrace-operator-0.14.2.tgz
version: 0.14.2
elasticsearch:
- apiVersion: v1
appVersion: 7.17.3
created: "2024-08-04T01:03:40.74392+07:00"
description: Official Elastic helm chart for Elasticsearch
digest: 437a6bd248482b8eb663a1f63bee6c2f9d00c0d77abe90c5a86ca35631969608
home: https://github.com/elastic/helm-charts
icon: https://helm.elastic.co/icons/elasticsearch.png
maintainers:
- email: [email protected]
name: Elastic
name: elasticsearch
sources:
- https://github.com/elastic/elasticsearch
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-7.17.3.tgz
version: 7.17.3
- apiVersion: v1
appVersion: 7.11.2
created: "2024-08-04T01:03:40.741413+07:00"
description: Official Elastic helm chart for Elasticsearch
digest: 5656be02d8b5645a25af15a414db0d9ffab6c161cbca3ead04a1fc758c5ddbfb
home: https://github.com/elastic/helm-charts
icon: https://helm.elastic.co/icons/elasticsearch.png
maintainers:
- email: [email protected]
name: Elastic
name: elasticsearch
sources:
- https://github.com/elastic/elasticsearch
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-7.11.2.tgz
version: 7.11.2
- apiVersion: v1
appVersion: 7.9.3
created: "2024-08-04T01:03:40.74683+07:00"
description: Official Elastic helm chart for Elasticsearch
digest: 853609052207a9e5f6e67b5f51525262376b4f6bdfb996ae2723ef94ecda536b
home: https://github.com/elastic/helm-charts
icon: https://helm.elastic.co/icons/elasticsearch.png
maintainers:
- email: [email protected]
name: Elastic
name: elasticsearch
sources:
- https://github.com/elastic/elasticsearch
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-7.9.3.tgz
version: 7.9.3
- apiVersion: v1
appVersion: 7.4.1
created: "2024-08-04T01:03:40.745261+07:00"
description: Official Elastic helm chart for Elasticsearch
digest: d4790d13df6c2ff2e7d49212bd8e44f4f47c3087d14b689721097485cdf7afc0
home: https://github.com/elastic/helm-charts
icon: https://helm.elastic.co/icons/elasticsearch.png
maintainers:
- email: [email protected]
name: Elastic
name: elasticsearch
sources:
- https://github.com/elastic/elasticsearch
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-7.4.1.tgz
version: 7.4.1
- apiVersion: v1
appVersion: 6.2.4
created: "2024-08-04T01:03:40.739173+07:00"
description: KPC Elasticsearch Chart
digest: 9f3c9515b965f8c6925605efee1b6b4b6146a211922c69614c6ce193f25a6a3c
name: elasticsearch
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-1.3.1.tgz
version: 1.3.1
- apiVersion: v1
appVersion: 6.2.4
created: "2024-08-04T01:03:40.73865+07:00"
description: KPC Elasticsearch Chart
digest: 2c58846a4fc705defc70df0faa5a179dfd7c178dfe9cc5d7e2735fe968d0788c
name: elasticsearch
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-1.3.0.tgz
version: 1.3.0
elasticsearch-curator:
- apiVersion: v1
appVersion: 5.7.6
created: "2024-08-04T01:03:40.747317+07:00"
description: A Helm chart for Elasticsearch Curator
digest: ecab0341db6a0894c96f45655064d33aec7ff7981ce36fa405f3cf77c208b0ab
home: https://github.com/elastic/curator
keywords:
- curator
- elasticsearch
- elasticsearch-curator
maintainers:
- email: [email protected]
name: desaintmartin
- email: [email protected]
name: gianrubio
name: elasticsearch-curator
sources:
- https://github.com/kubernetes/charts/elasticsearch-curator
- https://github.com/pires/docker-elasticsearch-curator
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-curator-2.1.5.tgz
version: 2.1.5
elasticsearch-exporter:
- apiVersion: v1
appVersion: 1.1.0
created: "2024-08-04T01:03:40.748339+07:00"
description: Elasticsearch stats exporter for Prometheus
digest: b1ebd073588423d8b8130b8ec7c1c9d949f7a428227c13bfbb2af5d8e5295d2b
home: https://github.com/justwatchcom/elasticsearch_exporter
keywords:
- metrics
- elasticsearch
- monitoring
kubeVersion: '>=1.10.0-0'
maintainers:
- email: [email protected]
name: svenmueller
- email: [email protected]
name: caarlos0
- email: [email protected]
name: desaintmartin
name: elasticsearch-exporter
sources:
- https://github.com/justwatchcom/elasticsearch_exporter
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-exporter-3.6.0.tgz
version: 3.6.0
- apiVersion: v1
appVersion: 1.1.0
created: "2024-08-04T01:03:40.747783+07:00"
description: Elasticsearch stats exporter for Prometheus
digest: cf479b5962829eae1398464902b13d97cad5580e875f121a0b3d74ed14c35da4
home: https://github.com/justwatchcom/elasticsearch_exporter
keywords:
- metrics
- elasticsearch
- monitoring
maintainers:
- email: [email protected]
name: svenmueller
- email: [email protected]
name: caarlos0
name: elasticsearch-exporter
sources:
- https://github.com/justwatchcom/elasticsearch_exporter
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-exporter-1.10.1.tgz
version: 1.10.1
elasticsearch-firster-integration-test:
- apiVersion: v1
appVersion: 7.11.2
created: "2024-08-04T01:03:40.751712+07:00"
description: Official Elastic helm chart for Elasticsearch
digest: 9e80f0b4fccd0af1ac7b60e1a0131763f242347f75d21493fbbffa73b4b0dec6
home: https://github.com/elastic/helm-charts
icon: https://helm.elastic.co/icons/elasticsearch.png
maintainers:
- email: [email protected]
name: Elastic
name: elasticsearch-firster-integration-test
sources:
- https://github.com/elastic/elasticsearch
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/elasticsearch-firster-integration-test-7.11.2.tgz
version: 7.11.2
filebeat:
- apiVersion: v1
appVersion: 7.17.3
created: "2024-08-04T01:03:40.752566+07:00"
description: Official Elastic helm chart for Filebeat
digest: d0da553dd4197a90324de1d0286bbfb4bab728d46e0088caab9754fc771a9bf9
home: https://github.com/elastic/helm-charts
icon: https://helm.elastic.co/icons/beats.png
maintainers:
- email: [email protected]
name: Elastic
name: filebeat
sources:
- https://github.com/elastic/beats
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/filebeat-7.17.3.tgz
version: 7.17.3
- apiVersion: v1
appVersion: 7.9.3
created: "2024-08-04T01:03:40.753161+07:00"
description: Official Elastic helm chart for Filebeat
digest: c501c48d4201fe19a9b6b471e9f9316a0b3ba5ed8ff9e0ac5e02edf5442031ff
home: https://github.com/elastic/helm-charts
icon: https://helm.elastic.co/icons/beats.png
maintainers:
- email: [email protected]
name: Elastic
name: filebeat
sources:
- https://github.com/elastic/beats
urls:
- https://kingpowerclick.github.io/helm-chart/package/elastic/filebeat-7.9.3.tgz
version: 7.9.3
fluentd:
- apiVersion: v1
appVersion: v2.4.0
created: "2024-08-04T01:03:40.760202+07:00"
description: A Fluentd Elasticsearch Helm chart for Kubernetes.
digest: f77ce45253caa7e9b940269ced9594765c81094f9b45502c101a5898edd2a40b
home: https://www.fluentd.org/
icon: https://raw.githubusercontent.com/fluent/fluentd-docs/master/public/logo/Fluentd_square.png
maintainers:
- email: [email protected]
name: rendhalver
- email: [email protected]
name: miouge1
- email: [email protected]
name: hectorj2f
name: fluentd
sources:
- https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/fluentd-elasticsearch/fluentd-es-image
- https://quay.io/repository/coreos/fluentd-kubernetes
- https://github.com/coreos/fluentd-kubernetes-daemonset
- https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html
urls:
- https://kingpowerclick.github.io/helm-chart/package/fluentd/fluentd-2.3.2.tgz
version: 2.3.2
fluentd-elasticsearch:
- apiVersion: v1
appVersion: 2.6.0
created: "2024-08-04T01:03:40.761171+07:00"
description: A Fluentd Helm chart for Kubernetes with Elasticsearch output
digest: 1df47d02f9c149b49b64d3ed2928962c57490f84fd59afe7ef49414aacba09c9
home: https://www.fluentd.org/
icon: https://raw.githubusercontent.com/fluent/fluentd-docs/master/public/logo/Fluentd_square.png
keywords:
- fluentd
- elasticsearch
- multiline
- detect-exceptions
- logging
maintainers:
- email: [email protected]
name: monotek
- email: [email protected]
name: axdotl
name: fluentd-elasticsearch
sources:
- https://github.com/kiwigrid/helm-charts/tree/master/charts/fluentd-elasticsearch
- https://github.com/fluent/fluentd-kubernetes-daemonset
- https://github.com/GoogleCloudPlatform/fluent-plugin-detect-exceptions
- https://github.com/kubernetes/kubernetes/tree/master/cluster/addons/fluentd-elasticsearch/fluentd-es-image
urls:
- https://kingpowerclick.github.io/helm-chart/package/fluentd/fluentd-elasticsearch-4.3.2.tgz
version: 4.3.2
grafana:
- apiVersion: v1
appVersion: 6.4.2
created: "2024-08-04T01:03:40.764213+07:00"
description: The leading tool for querying and visualizing time series and metrics.
digest: 86df90946833faa9b23ddf9e13724085936fd4327436efcc0f2d3dcfdd4435a9
home: https://grafana.net
icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png
kubeVersion: ^1.8.0-0
maintainers:
- email: [email protected]
name: zanhsieh
- email: [email protected]
name: rtluckie
- email: [email protected]
name: maorfr
name: grafana
sources:
- https://github.com/grafana/grafana
urls:
- https://kingpowerclick.github.io/helm-chart/package/grafana/grafana-3.12.0.tgz
version: 3.12.0
- apiVersion: v1
appVersion: 5.3.1
created: "2024-08-04T01:03:40.762049+07:00"
description: The leading tool for querying and visualizing time series and metrics.
digest: b232f834872cd904718fbabfd50b4288d79cf193b6075c63ffc854bd84fab9ee
home: https://grafana.net
icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png
kubeVersion: ^1.8.0-0
maintainers:
- email: [email protected]
name: zanhsieh
- email: [email protected]
name: rtluckie
name: grafana
sources:
- https://github.com/grafana/grafana
urls:
- https://kingpowerclick.github.io/helm-chart/package/grafana/grafana-1.17.2.tgz
version: 1.17.2
haproxy:
- apiVersion: v1
appVersion: 2.4.1
created: "2024-08-04T01:03:40.78112+07:00"
description: A Helm chart for HAProxy on Kubernetes
digest: 53d65111db5ee59f354653e2c22da9052ca771a64b55ebd9627403dd9363dfc2
home: https://github.com/haproxytech/helm-charts/tree/main/haproxy
icon: http://www.haproxy.org/img/HAProxyCommunityEdition_60px.png
keywords:
- haproxy
kubeVersion: '>=1.12.0-0'
maintainers:
- email: [email protected]
name: Dinko Korunic
name: haproxy
sources:
- http://www.haproxy.org/
urls:
- https://kingpowerclick.github.io/helm-chart/package/haproxy/haproxy-1.5.0.tgz
version: 1.5.0
influxdb:
- apiVersion: v1
appVersion: 1.7.6
created: "2024-08-04T01:03:40.782138+07:00"
description: Scalable datastore for metrics, events, and real-time analytics.
digest: 54ea88bbd9634074d52241a3d1815537abc7e0db9ac43d3039888c5ae645d6c1
home: https://www.influxdata.com/time-series-platform/influxdb/
keywords:
- influxdb
- database
- timeseries
maintainers:
- email: [email protected]
name: jackzampolin
- email: [email protected]
name: aisuko
name: influxdb
sources:
- https://github.com/influxdata/influxdb
urls:
- https://kingpowerclick.github.io/helm-chart/package/influxdb/influxdb-2.0.0.tgz
version: 2.0.0
ingress-nginx:
- annotations:
artifacthub.io/changes: |
- "add lint on chart before release (#9570)"
- "ci: remove setup-helm step (#9404)"
- "feat(helm): Optionally use cert-manager instead admission patch (#9279)"
- "run helm release on main only and when the chart/value changes only (#9290)"
- "Update Ingress-Nginx version controller-v1.6.4"
artifacthub.io/prerelease: "false"
apiVersion: v2
appVersion: 1.6.4
created: "2024-08-04T01:03:40.784988+07:00"
description: Ingress controller for Kubernetes using NGINX as a reverse proxy
and load balancer
digest: 7f4c140d9fbaa368fe0cbfcd7a1c257a22cf5aaf5ec5219992e68432366ebe29
home: https://github.com/kubernetes/ingress-nginx
icon: https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Nginx_logo.svg/500px-Nginx_logo.svg.png
keywords:
- ingress
- nginx
kubeVersion: '>=1.20.0-0'
maintainers:
- name: rikatz
- name: strongjz
- name: tao12345666333
name: ingress-nginx
sources:
- https://github.com/kubernetes/ingress-nginx
urls:
- https://kingpowerclick.github.io/helm-chart/package/ingress-nginx/ingress-nginx-4.5.2.tgz
version: 4.5.2
jenkins:
- annotations:
artifacthub.io/links: |
- name: Chart Source
url: https://github.com/jenkinsci/helm-charts/tree/main/charts/jenkins
- name: Jenkins
url: https://www.jenkins.io/
apiVersion: v1
appVersion: 2.249.3
created: "2024-08-04T01:03:40.791105+07:00"
description: Jenkins - Build great things at any scale! The leading open source
automation server, Jenkins provides hundreds of plugins to support building,
deploying and automating any project.
digest: 1eeacca026b7c5ec31ee17bb75ad2545aa1db03dde73c26c2a076370a5e76728
home: https://jenkins.io/
icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png
maintainers:
- email: [email protected]
name: maorfr
- email: [email protected]
name: torstenwalter
- email: [email protected]
name: mogaal
- email: [email protected]
name: wmcdona89
- email: [email protected]
name: timja
name: jenkins
sources:
- https://github.com/jenkinsci/jenkins
- https://github.com/jenkinsci/docker-inbound-agent
- https://github.com/maorfr/kube-tasks
- https://github.com/jenkinsci/configuration-as-code-plugin
urls:
- https://kingpowerclick.github.io/helm-chart/package/jenkins/jenkins-2.19.0.tgz
version: 2.19.0
- apiVersion: v1
appVersion: lts
created: "2024-08-04T01:03:40.793444+07:00"
deprecated: true
description: DEPRECATED - Open source continuous integration server. It supports
multiple SCM tools including CVS, Subversion and Git. It can execute Apache
Ant and Apache Maven-based projects as well as arbitrary scripts.
digest: 47c5bbdb779b3296e8e180c1f44fddf3c4f4084a01de4c1a458117a54f20f5a4
home: https://jenkins.io/
icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png
name: jenkins
sources:
- https://github.com/jenkinsci/jenkins
- https://github.com/jenkinsci/docker-jnlp-slave
- https://github.com/maorfr/kube-tasks
- https://github.com/jenkinsci/configuration-as-code-plugin
urls:
- https://kingpowerclick.github.io/helm-chart/package/jenkins/jenkins-2.5.4.tgz
version: 2.5.4
- apiVersion: v1
appVersion: lts
created: "2024-08-04T01:03:40.786416+07:00"
description: Open source continuous integration server. It supports multiple SCM
tools including CVS, Subversion and Git. It can execute Apache Ant and Apache
Maven-based projects as well as arbitrary scripts.
digest: 6287ae43acb5cb47aeb0cc397c3eaad1df4a568c92ad27e49966d2cff092eda2
home: https://jenkins.io/
icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png
maintainers:
- email: [email protected]
name: lachie83
- email: [email protected]
name: viglesiasce
- email: [email protected]
name: maorfr
name: jenkins
sources:
- https://github.com/jenkinsci/jenkins
- https://github.com/jenkinsci/docker-jnlp-slave
- https://github.com/nuvo/kube-tasks
- https://github.com/jenkinsci/configuration-as-code-plugin
urls:
- https://kingpowerclick.github.io/helm-chart/package/jenkins/jenkins-0.36.2.tgz
version: 0.36.2
k8s-monitoring:
- apiVersion: v2
appVersion: 1.6.1
created: "2024-08-04T01:03:40.78013+07:00"
dependencies:
- name: grafana-agent
repository: https://grafana.github.io/helm-charts
version: 0.30.0
- alias: grafana-agent-events
condition: logs.cluster_events.enabled
name: grafana-agent
repository: https://grafana.github.io/helm-charts
version: 0.30.0
- alias: grafana-agent-logs
condition: logs.pod_logs.enabled
name: grafana-agent
repository: https://grafana.github.io/helm-charts
version: 0.30.0
- condition: kube-state-metrics.enabled
name: kube-state-metrics
repository: https://prometheus-community.github.io/helm-charts
version: 5.15.3
- condition: prometheus-node-exporter.enabled
name: prometheus-node-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 4.25.0
- condition: prometheus-operator-crds.enabled
name: prometheus-operator-crds
repository: https://prometheus-community.github.io/helm-charts
version: 8.0.1
- condition: prometheus-windows-exporter.enabled
name: prometheus-windows-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.1.2
- condition: opencost.enabled
name: opencost
repository: https://opencost.github.io/opencost-helm-chart
version: 1.28.0
description: A Helm chart for gathering, scraping, and forwarding Kubernetes infrastructure
metrics and logs to a Grafana Stack.
digest: 56d0e4e46c91245907f517f26e97316812f764a55545f807f12910b9a3105492
icon: https://raw.githubusercontent.com/grafana/grafana/main/public/img/grafana_icon.svg
maintainers:
- email: [email protected]
name: petewall