-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
1467 lines (1467 loc) · 48.2 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:
amd-gpu:
- apiVersion: v2
appVersion: 1.25.2.8
created: "2024-11-16T21:27:46.992979799+09:00"
dependencies:
- condition: nfd.enabled
name: node-feature-discovery
repository: https://kubernetes-sigs.github.io/node-feature-discovery/charts
version: '>= 0.8.1-0'
description: A Helm chart for deploying Kubernetes AMD GPU device plugin
digest: da4ba2f53083ffbc42d5a20775148266ecf638c559ddbe18e1cbb556737ab247
home: https://github.com/ROCm/k8s-device-plugin
icon: https://raw.githubusercontent.com/ROCm/k8s-device-plugin/master/helm/logo.png
keywords:
- kubernetes
- cluster
- hardware
- gpu
kubeVersion: '>= 1.18.0-0'
maintainers:
- name: Kenny Ho <[email protected]>
name: amd-gpu
sources:
- https://github.com/ROCm/k8s-device-plugin
type: application
urls:
- charts/amd-gpu-0.13.0.tgz
version: 0.13.0
argo-cd:
- annotations:
artifacthub.io/changes: |
- kind: changed
description: Default argocd repo-server init container replicas to empty
artifacthub.io/signKey: |
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
apiVersion: v2
appVersion: v2.11.3
created: "2024-11-16T21:27:47.014189172+09:00"
dependencies:
- condition: redis-ha.enabled
name: redis-ha
repository: https://dandydeveloper.github.io/charts/
version: 4.26.1
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery
tool for Kubernetes.
digest: d8a1d402329419855ececb795132338360271944229b744c4c49757ae1b624cb
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
keywords:
- argoproj
- argocd
- gitops
kubeVersion: '>=1.23.0-0'
maintainers:
- name: argoproj
url: https://argoproj.github.io/
name: argo-cd
sources:
- https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd
- https://github.com/argoproj/argo-cd
urls:
- charts/argo-cd-7.2.1.tgz
version: 7.2.1
- annotations:
artifacthub.io/changes: |
- kind: changed
description: Added support for http probe scheme for dex liveness and readiness
artifacthub.io/signKey: |
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
apiVersion: v2
appVersion: v2.10.1
created: "2024-11-16T21:27:47.003908804+09:00"
dependencies:
- condition: redis-ha.enabled
name: redis-ha
repository: https://dandydeveloper.github.io/charts/
version: 4.26.1
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery
tool for Kubernetes.
digest: 457e12363da5312a353addd91e2445c6a6ccf2a56064dcde76a33c8f81b8939b
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
keywords:
- argoproj
- argocd
- gitops
kubeVersion: '>=1.23.0-0'
maintainers:
- name: argoproj
url: https://argoproj.github.io/
name: argo-cd
sources:
- https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd
- https://github.com/argoproj/argo-cd
urls:
- charts/argo-cd-6.4.1.tgz
version: 6.4.1
awx-operator:
- apiVersion: v2
appVersion: 2.15.0
created: "2024-11-16T21:27:47.014894771+09:00"
description: A Helm chart for the AWX Operator
digest: d272279ef0f9b6ce171223450e9f030dfec3fd47adcd29ac39cc335dcd2cb84e
name: awx-operator
type: application
urls:
- charts/awx-operator-2.15.0.tgz
version: 2.15.0
cert-manager:
- annotations:
artifacthub.io/license: Apache-2.0
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.14.5
created: "2024-11-16T21:27:47.019401894+09:00"
description: A Helm chart for cert-manager
digest: 865bd97a0c1f13d52099f25b74f3c560972206bf52603818b00bc6c5c4278d5a
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.22.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:
- charts/cert-manager-v1.14.5.tgz
version: v1.14.5
grafana:
- annotations:
artifacthub.io/license: Apache-2.0
artifacthub.io/links: |
- name: Chart Source
url: https://github.com/grafana/helm-charts
- name: Upstream Project
url: https://github.com/grafana/grafana
apiVersion: v2
appVersion: 10.4.1
created: "2024-11-16T21:27:47.023201359+09:00"
description: The leading tool for querying and visualizing time series and metrics.
digest: eb68b49c8074143e064f17bfd31ebd67ebaf07e525426745c07477d4bdef8de4
home: https://grafana.com
icon: https://artifacthub.io/image/b4fed1a7-6c8f-4945-b99d-096efa3e4116
keywords:
- monitoring
- metric
kubeVersion: ^1.8.0-0
maintainers:
- email: [email protected]
name: zanhsieh
- email: [email protected]
name: rtluckie
- email: [email protected]
name: maorfr
- email: [email protected]
name: Xtigyro
- email: [email protected]
name: torstenwalter
name: grafana
sources:
- https://github.com/grafana/grafana
- https://github.com/grafana/helm-charts
type: application
urls:
- charts/grafana-7.3.9.tgz
version: 7.3.9
harbor:
- apiVersion: v1
appVersion: 2.10.0
created: "2024-11-16T21:27:47.026484825+09:00"
description: An open source trusted cloud native registry that stores, signs,
and scans content
digest: a0ae2ebd3b2bdde809090558d61e2c0b9a4984f09e70a2a874504c3815b346e4
home: https://goharbor.io
icon: https://raw.githubusercontent.com/goharbor/website/main/static/img/logos/harbor-icon-color.png
keywords:
- docker
- registry
- harbor
maintainers:
- email: [email protected]
name: Wenkai Yin
- email: [email protected]
name: Weiwei He
- email: [email protected]
name: Shengwen Yu
name: harbor
sources:
- https://github.com/goharbor/harbor
- https://github.com/goharbor/harbor-helm
urls:
- charts/harbor-1.14.0.tgz
version: 1.14.0
ingress-nginx:
- annotations:
artifacthub.io/changes: |
- Update Ingress-Nginx version controller-v1.11.3
artifacthub.io/prerelease: "false"
apiVersion: v2
appVersion: 1.11.3
created: "2024-11-16T21:27:47.03126191+09:00"
description: Ingress controller for Kubernetes using NGINX as a reverse proxy
and load balancer
digest: a9f371489a6c18042508c0b5c2ea669deaad7ccc08f37efc4522e336edda1c20
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.21.0-0'
maintainers:
- name: cpanato
- name: Gacko
- name: puerco
- name: rikatz
- name: strongjz
- name: tao12345666333
name: ingress-nginx
sources:
- https://github.com/kubernetes/ingress-nginx
urls:
- charts/ingress-nginx-4.11.3.tgz
version: 4.11.3
k8s-ecr-login-renew:
- apiVersion: v2
appVersion: 1.7.1
created: "2024-11-16T21:27:47.031701579+09:00"
description: Deploys a cronJob which will renew ECR imagePullSecrets automatically
digest: 47a6bbfa5136b5fffd0c5c27be190b51bdc236a6872335dfc91af12bf493bc1d
keywords:
- aws
- ecr
- imagePullSecrets
maintainers:
- name: Nabeel Sulieman
url: https://nabeel.dev
name: k8s-ecr-login-renew
sources:
- https://github.com/nabsul/k8s-ecr-login-renew
urls:
- charts/k8s-ecr-login-renew-1.0.5.tgz
version: 1.0.5
keycloak:
- annotations:
category: DeveloperTools
images: |
- name: keycloak
image: docker.io/bitnami/keycloak:26.0.5-debian-12-r0
- name: keycloak-config-cli
image: docker.io/bitnami/keycloak-config-cli:6.1.6-debian-12-r5
licenses: Apache-2.0
apiVersion: v2
appVersion: 26.0.5
created: "2024-11-16T21:27:47.054925367+09:00"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 16.x.x
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
description: Keycloak is a high performance Java-based identity and access management
solution. It lets developers add an authentication layer to their applications
with minimum effort.
digest: e02c999e5307abc9c0e9430804c988c8166c84c3ee0148f52d3abe08a3d9ee48
home: https://bitnami.com
icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png
keywords:
- keycloak
- access-management
maintainers:
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
name: keycloak
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/keycloak
urls:
- charts/keycloak-24.2.0.tgz
version: 24.2.0
- annotations:
category: DeveloperTools
images: |
- name: keycloak
image: docker.io/bitnami/keycloak:24.0.4-debian-12-r1
- name: keycloak-config-cli
image: docker.io/bitnami/keycloak-config-cli:5.12.0-debian-12-r4
licenses: Apache-2.0
apiVersion: v2
appVersion: 24.0.4
created: "2024-11-16T21:27:47.046181307+09:00"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 15.x.x
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
description: Keycloak is a high performance Java-based identity and access management
solution. It lets developers add an authentication layer to their applications
with minimum effort.
digest: b432c5bcf8efa862c190ce4085c26f62420b202a974e701bf7c99b2274668612
home: https://bitnami.com
icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png
keywords:
- keycloak
- access-management
maintainers:
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
name: keycloak
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/keycloak
urls:
- charts/keycloak-21.2.2.tgz
version: 21.2.2
- annotations:
category: DeveloperTools
images: |
- name: keycloak
image: docker.io/bitnami/keycloak:23.0.7-debian-12-r4
- name: keycloak-config-cli
image: docker.io/bitnami/keycloak-config-cli:5.11.1-debian-12-r0
licenses: Apache-2.0
apiVersion: v2
appVersion: 23.0.7
created: "2024-11-16T21:27:47.039535855+09:00"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 14.x.x
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
description: Keycloak is a high performance Java-based identity and access management
solution. It lets developers add an authentication layer to their applications
with minimum effort.
digest: c29239eb5f229fcc93e62ac8da5e7511343dad336928b2a8518fc925a2ad719d
home: https://bitnami.com
icon: https://bitnami.com/assets/stacks/keycloak/img/keycloak-stack-220x234.png
keywords:
- keycloak
- access-management
maintainers:
- name: VMware, Inc.
url: https://github.com/bitnami/charts
name: keycloak
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/keycloak
urls:
- charts/keycloak-19.3.4.tgz
version: 19.3.4
kube-prometheus-stack:
- annotations:
artifacthub.io/license: Apache-2.0
artifacthub.io/links: |
- name: Chart Source
url: https://github.com/prometheus-community/helm-charts
- name: Upstream Project
url: https://github.com/prometheus-operator/kube-prometheus
artifacthub.io/operator: "true"
apiVersion: v2
appVersion: v0.72.0
created: "2024-11-16T21:27:47.10178796+09:00"
dependencies:
- condition: crds.enabled
name: crds
repository: ""
version: 0.0.0
- condition: kubeStateMetrics.enabled
name: kube-state-metrics
repository: https://prometheus-community.github.io/helm-charts
version: 5.16.*
- condition: nodeExporter.enabled
name: prometheus-node-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 4.30.*
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 7.3.*
- condition: windowsMonitoring.enabled
name: prometheus-windows-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.3.*
description: kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards,
and Prometheus rules combined with documentation and scripts to provide easy
to operate end-to-end Kubernetes cluster monitoring with Prometheus using the
Prometheus Operator.
digest: abffe075dae328054976fe5c5ebfd6dd365bb3c87ca9310bed7a654c24c5c760
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- operator
- prometheus
- kube-prometheus
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: andrewgkew
- email: [email protected]
name: gianrubio
- email: [email protected]
name: gkarthiks
- email: [email protected]
name: GMartinez-Sisti
- email: [email protected]
name: jkroepke
- email: [email protected]
name: scottrigby
- email: [email protected]
name: Xtigyro
- email: [email protected]
name: QuentinBisson
name: kube-prometheus-stack
sources:
- https://github.com/prometheus-community/helm-charts
- https://github.com/prometheus-operator/kube-prometheus
type: application
urls:
- charts/kube-prometheus-stack-57.0.1.tgz
version: 57.0.1
- annotations:
artifacthub.io/license: Apache-2.0
artifacthub.io/links: |
- name: Chart Source
url: https://github.com/prometheus-community/helm-charts
- name: Upstream Project
url: https://github.com/prometheus-operator/kube-prometheus
artifacthub.io/operator: "true"
apiVersion: v2
appVersion: v0.71.2
created: "2024-11-16T21:27:47.077228765+09:00"
dependencies:
- condition: crds.enabled
name: crds
repository: ""
version: 0.0.0
- condition: kubeStateMetrics.enabled
name: kube-state-metrics
repository: https://prometheus-community.github.io/helm-charts
version: 5.16.*
- condition: nodeExporter.enabled
name: prometheus-node-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 4.30.*
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 7.3.*
- condition: windowsMonitoring.enabled
name: prometheus-windows-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.3.*
description: kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards,
and Prometheus rules combined with documentation and scripts to provide easy
to operate end-to-end Kubernetes cluster monitoring with Prometheus using the
Prometheus Operator.
digest: a260c2b5ad78cbf8e43e830b608d4ca52a616eb502cc6e4f37cfd7bf93db0290
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- operator
- prometheus
- kube-prometheus
kubeVersion: '>=1.19.0-0'
maintainers:
- email: [email protected]
name: andrewgkew
- email: [email protected]
name: gianrubio
- email: [email protected]
name: gkarthiks
- email: [email protected]
name: GMartinez-Sisti
- email: [email protected]
name: jkroepke
- email: [email protected]
name: scottrigby
- email: [email protected]
name: Xtigyro
- email: [email protected]
name: QuentinBisson
name: kube-prometheus-stack
sources:
- https://github.com/prometheus-community/helm-charts
- https://github.com/prometheus-operator/kube-prometheus
type: application
urls:
- charts/kube-prometheus-stack-56.8.2.tgz
version: 56.8.2
kubernetes-replicator:
- apiVersion: v2
appVersion: v2.9.2
created: "2024-11-16T21:27:47.102047485+09:00"
description: Controller for replicating secrets+configmaps across namespaces
digest: 7229545d3bdf075d8fd007d4ab67059f7a63483868efb0aaf506de0b1ff26633
name: kubernetes-replicator
type: application
urls:
- charts/kubernetes-replicator-2.9.2.tgz
version: 2.9.2
kyverno:
- annotations:
artifacthub.io/changes: |
- kind: added
description: Add a key to preserve configmap settings during upgrade
- kind: added
description: Make admission reports breaker threshold configurable
artifacthub.io/links: |
- name: Documentation
url: https://kyverno.io/docs
artifacthub.io/operator: "false"
artifacthub.io/prerelease: "false"
apiVersion: v2
appVersion: v1.12.5
created: "2024-11-16T21:27:47.12093392+09:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: ""
version: 3.2.6
- condition: crds.install
name: crds
repository: ""
version: 3.2.6
description: Kubernetes Native Policy Management
digest: f2ca140e20a6637b78bec57ae9005fef7801eda33882013cdf05a7fb72966adc
home: https://kyverno.io/
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
keywords:
- kubernetes
- nirmata
- policy agent
- policy
- validating webhook
- admission controller
- mutation
- mutate
- validate
- generate
- supply chain
- security
kubeVersion: '>=1.25.0-0'
maintainers:
- name: Nirmata
url: https://kyverno.io/
name: kyverno
sources:
- https://github.com/kyverno/kyverno
type: application
urls:
- charts/kyverno-3.2.6.tgz
version: 3.2.6
- annotations:
artifacthub.io/changes: |
- kind: added
description: Added possibility to define additional init and sidecar container.
- kind: added
description: Added ability to remove namespaces from default resourceFilters list.
- kind: added
description: Prevent installing Kyverno in namespace kube-system.
- kind: fixed
description: Docs for generatecontrollerExtraResources.
- kind: changed
description: Enable autogen internals by default.
- kind: fixed
description: Self signed certificates not using SANs.
- kind: added
description: Extra args support for init container.
- kind: added
description: Allow overriding of test security context and resource block.
- kind: added
description: Added possibility to define custom image registries
- kind: added
description: Enable adding optional annotations to configmaps
- kind: added
description: Add startup probes support
- kind: added
description: Support extra CRD annotations
- kind: added
description: Grafana dashboard.
artifacthub.io/links: |
- name: Documentation
url: https://kyverno.io/docs
artifacthub.io/operator: "false"
artifacthub.io/prerelease: "false"
apiVersion: v2
appVersion: v1.8.5
created: "2024-11-16T21:27:47.105902373+09:00"
description: Kubernetes Native Policy Management
digest: 747ee2317b34e2e9831b7f47d01086b7582a5c01b188461b8d43638b99efff81
home: https://kyverno.io/
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
keywords:
- kubernetes
- nirmata
- policy agent
- validating webhook
- admissions controller
kubeVersion: '>=1.16.0-0'
maintainers:
- name: Nirmata
url: https://kyverno.io/
name: kyverno
sources:
- https://github.com/kyverno/kyverno
type: application
urls:
- charts/kyverno-2.6.5.tgz
version: 2.6.5
local-path-provisioner:
- apiVersion: v1
appVersion: v0.0.26
created: "2024-11-16T21:27:47.122055158+09:00"
description: Use HostPath for persistent local storage with Kubernetes
digest: 7a26dc746b60a67e694e49c52e1b43142c9c98a75d04cccd9ebf2e50f1f7b8ee
home: https://github.com/rancher/local-path-provisioner
keywords:
- storage
- hostpath
kubeVersion: '>=1.12.0-r0'
name: local-path-provisioner
sources:
- https://github.com/rancher/local-path-provisioner.git
urls:
- charts/local-path-provisioner-0.0.26.tgz
version: 0.0.26
- apiVersion: v1
appVersion: v0.0.25
created: "2024-11-16T21:27:47.121396533+09:00"
description: Use HostPath for persistent local storage with Kubernetes
digest: d0b29816de24dc528829da513c55e86e6baaa2f0c7346d80d628b4f97611e284
home: https://github.com/rancher/local-path-provisioner
keywords:
- storage
- hostpath
kubeVersion: '>=1.12.0-r0'
name: local-path-provisioner
sources:
- https://github.com/rancher/local-path-provisioner.git
urls:
- charts/local-path-provisioner-0.0.25.tgz
version: 0.0.25
loki-distributed:
- apiVersion: v2
appVersion: 2.9.6
created: "2024-11-16T21:27:47.126426463+09:00"
description: Helm chart for Grafana Loki in microservices mode
digest: c0436b6adfd5dc27b6b81d4b5c62a00cf52c07f1318a5d985e16cb06286e855b
home: https://grafana.github.io/helm-charts
icon: https://grafana.com/docs/loki/latest/logo_and_name.png
maintainers:
- name: unguiculus
name: loki-distributed
sources:
- https://github.com/grafana/loki
- https://grafana.com/oss/loki/
- https://grafana.com/docs/loki/latest/
type: application
urls:
- charts/loki-distributed-0.79.0.tgz
version: 0.79.0
mariadb:
- annotations:
category: Database
images: |
- name: mariadb
image: docker.io/bitnami/mariadb:11.4.2-debian-12-r0
- name: mysqld-exporter
image: docker.io/bitnami/mysqld-exporter:0.15.1-debian-12-r27
- name: os-shell
image: docker.io/bitnami/os-shell:12-debian-12-r25
licenses: Apache-2.0
apiVersion: v2
appVersion: 11.4.2
created: "2024-11-16T21:27:47.129896954+09:00"
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
description: MariaDB is an open source, community-developed SQL database server
that is widely in use around the world due to its enterprise features, flexibility,
and collaboration with leading tech firms.
digest: c0d02e1f7937b651546be93cdd41ea668db422e1a1667e4f9ff8214c390edad0
home: https://bitnami.com
icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png
keywords:
- mariadb
- mysql
- database
- sql
- prometheus
maintainers:
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
name: mariadb
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/mariadb
urls:
- charts/mariadb-19.0.1.tgz
version: 19.0.1
metallb:
- apiVersion: v2
appVersion: v0.14.4
created: "2024-11-16T21:27:47.131929551+09:00"
dependencies:
- condition: crds.enabled
name: crds
repository: ""
version: 0.14.4
- condition: frrk8s.enabled
name: frr-k8s
repository: https://metallb.github.io/frr-k8s
version: 0.0.10
description: A network load-balancer implementation for Kubernetes using standard
routing protocols
digest: 41c6026f19737cf3658df23d51023f924a510e8be619a733da38e7e4dc79d872
home: https://metallb.universe.tf
icon: https://metallb.universe.tf/images/logo/metallb-white.png
kubeVersion: '>= 1.19.0-0'
name: metallb
sources:
- https://github.com/metallb/metallb
type: application
urls:
- charts/metallb-0.14.4.tgz
version: 0.14.4
metrics-server:
- annotations:
artifacthub.io/changes: |
- kind: changed
description: "Updated the _Metrics Server_ OCI image to [v0.7.0](https://github.com/kubernetes-sigs/metrics-server/releases/tag/v0.7.0)."
- kind: changed
description: "Updated the _addon-resizer_ OCI image to [v1.8.20](https://github.com/kubernetes/autoscaler/releases/tag/addon-resizer-1.8.20)."
apiVersion: v2
appVersion: 0.7.0
created: "2024-11-16T21:27:47.133423654+09:00"
description: Metrics Server is a scalable, efficient source of container resource
metrics for Kubernetes built-in autoscaling pipelines.
digest: 19df2fa9c4c6e1ec4f134da56ae9c3e6b610bfd5674744115c9e9864c5f3debe
home: https://github.com/kubernetes-sigs/metrics-server
icon: https://avatars.githubusercontent.com/u/36015203?s=400&v=4
keywords:
- kubernetes
- metrics-server
- metrics
maintainers:
- name: stevehipwell
url: https://github.com/stevehipwell
- name: krmichel
url: https://github.com/krmichel
- name: endrec
url: https://github.com/endrec
name: metrics-server
sources:
- https://github.com/kubernetes-sigs/metrics-server
type: application
urls:
- charts/metrics-server-3.12.0.tgz
version: 3.12.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: "Added default Metrics Server resource requests."
- kind: changed
description: "Updated the Metrics Server OCI image to v0.6.3."
- kind: changed
description: "Updated the addon resizer OCI image to v1.8.19."
- kind: changed
description: "Changed the default addon resizer nanny resource configuration to match the documented Metrics Server autoscaling values."
apiVersion: v2
appVersion: 0.6.4
created: "2024-11-16T21:27:47.132662388+09:00"
description: Metrics Server is a scalable, efficient source of container resource
metrics for Kubernetes built-in autoscaling pipelines.
digest: e7cba5a2d7e2b0949b3ea1aa48fc3780b71eba17e1edccc8273f5da67048164b
home: https://github.com/kubernetes-sigs/metrics-server
icon: https://avatars.githubusercontent.com/u/36015203?s=400&v=4
keywords:
- kubernetes
- metrics-server
- metrics
maintainers:
- name: stevehipwell
url: https://github.com/stevehipwell
- name: krmichel
url: https://github.com/krmichel
- name: endrec
url: https://github.com/endrec
name: metrics-server
sources:
- https://github.com/kubernetes-sigs/metrics-server
type: application
urls:
- charts/metrics-server-3.11.0.tgz
version: 3.11.0
moai-operator:
- apiVersion: v2
appVersion: 0.5.0
created: "2024-11-16T21:27:47.134794315+09:00"
description: A Helm chart for Kubernetes
digest: 765df6b4e29c139c48fa186434e59965d87267c35748f8115ba2dcb6be913575
name: moai-operator
type: application
urls:
- charts/moai-operator-0.5.0.tgz
version: 0.5.0
- apiVersion: v2
appVersion: 0.4.0
created: "2024-11-16T21:27:47.134462233+09:00"
description: A Helm chart for Kubernetes
digest: 0be7e85442651af4961544b1f5778fd1dbb68381c02dbe364ce78a8cf8f25390
name: moai-operator
type: application
urls:
- charts/moai-operator-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
appVersion: 0.3.0
created: "2024-11-16T21:27:47.134120589+09:00"
description: A Helm chart for Kubernetes
digest: f9e1b784c43d5b5f86b38a5190886a64398ed31355907d3c13b1b80013370289
name: moai-operator
type: application
urls:
- charts/moai-operator-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
appVersion: 0.2.0
created: "2024-11-16T21:27:47.133767162+09:00"
description: A Helm chart for Kubernetes
digest: da060ea16c859ebfeb4e6d459c53ef3158343f1e985f6880837def8ba18d2252
name: moai-operator
type: application
urls:
- charts/moai-operator-0.2.0.tgz
version: 0.2.0
moai-web:
- apiVersion: v2
appVersion: 1.0.34
created: "2024-11-16T21:27:47.141343458+09:00"
description: A Helm chart for MoAI
digest: 0660b10fc29586f86507b3abf13eb33b28ea8c7e3c0b983b786215e3cd971c15
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application
urls:
- charts/moai-web-1.0.34.tgz
version: 1.0.34
- apiVersion: v2
appVersion: 1.0.33
created: "2024-11-16T21:27:47.140851642+09:00"
description: A Helm chart for MoAI
digest: 44d096e08746c5fd18564dbc1b06eede42b28d92efc904267a1fb7e221c07b9d
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application
urls:
- charts/moai-web-1.0.33.tgz
version: 1.0.33
- apiVersion: v2
appVersion: 1.0.32
created: "2024-11-16T21:27:47.140400971+09:00"
description: A Helm chart for MoAI
digest: eb6a8fecd4bd28b7398f05a933c18e8f242147ec919121069de5755e8ab503cf
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application
urls:
- charts/moai-web-1.0.32.tgz
version: 1.0.32
- apiVersion: v2
appVersion: 1.0.31
created: "2024-11-16T21:27:47.139846962+09:00"
description: A Helm chart for MoAI
digest: 8cc2b37d0fd4dc6a04cd359c4b834044dafba7bfd875723cbf4339aa6009d2bb
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application
urls:
- charts/moai-web-1.0.31.tgz
version: 1.0.31
- apiVersion: v2
appVersion: 1.0.30
created: "2024-11-16T21:27:47.139142802+09:00"
description: A Helm chart for MoAI
digest: 76942e9a5b6f960bcf7ed2db98f0dce85f7096643470c1bfd6eb4c5aa8a9c447
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application
urls:
- charts/moai-web-1.0.30.tgz
version: 1.0.30
- apiVersion: v2
appVersion: 1.0.29
created: "2024-11-16T21:27:47.138595309+09:00"
description: A Helm chart for MoAI
digest: beca21539eeadc74b50283906505381e236acd504e9770fa8ce1eab77f429644
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application
urls:
- charts/moai-web-1.0.29.tgz
version: 1.0.29
- apiVersion: v2
appVersion: 1.0.28
created: "2024-11-16T21:27:47.137844053+09:00"
description: A Helm chart for MoAI
digest: f60fdd2a784914fcfe6e54922703e01ca103f3f740778fedf2d6a5d999746650
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application
urls:
- charts/moai-web-1.0.28.tgz
version: 1.0.28
- apiVersion: v2
appVersion: 1.0.27
created: "2024-11-16T21:27:47.137085085+09:00"
description: A Helm chart for MoAI
digest: 872a9033d08cdc684795d7f0a009addb74c297358d961a403c2206cd21619fe0
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application
urls:
- charts/moai-web-1.0.27.tgz
version: 1.0.27
- apiVersion: v2
appVersion: 1.0.26
created: "2024-11-16T21:27:47.136124242+09:00"
description: A Helm chart for MoAI
digest: cae0eababfde6bf3d57a912624835e404963ed5976942ec6e05d9a8f998a6b23
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application
urls:
- charts/moai-web-1.0.26.tgz
version: 1.0.26
- apiVersion: v2
appVersion: 1.0.25
created: "2024-11-16T21:27:47.135236522+09:00"
description: A Helm chart for MoAI
digest: 049376dd067af2737e2305e6d905da9f06778398a8527fe8b4f5ba2ff209c9eb
home: https://github.com/moreh-dev/moai
name: moai-web
sources:
- https://github.com/moreh-dev/moai
- https://github.com/moreh-dev/web-common
type: application