forked from helm/hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repos.yaml
1200 lines (1200 loc) · 35.3 KB
/
repos.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
# This file contains the contact information for repositories exposed through
# the Helm Hub. Each repository has a url, the base path to its location, and
# one or more maintainers.
#
# The structure of the repositories object is:
# repositories:
# - name: example
# url: https://example.com
# maintainers:
# - name: foo
# email: [email protected]
#
# Note, for the email address it is acceptable to have a mailing list for a team
# because projects often have multiple people who may rotate on the team.
repositories:
- name: stable
url: https://kubernetes-charts.storage.googleapis.com
maintainers:
- name: Helm Project
email: [email protected]
- name: incubator
url: https://kubernetes-charts-incubator.storage.googleapis.com
maintainers:
- name: Helm Project
email: [email protected]
- name: jfrog
url: https://charts.jfrog.io
maintainers:
- email: [email protected]
name: jfrog
- name: kremers
url: https://kremers.github.io
maintainers:
- name: kremers
email: [email protected]
- name: pryorda
email: [email protected]
- name: linkerd2
url: https://helm.linkerd.io/stable
maintainers:
- name: Linkerd authors
email: [email protected]
- name: linkerd2-edge
url: https://helm.linkerd.io/edge
maintainers:
- name: Linkerd authors
email: [email protected]
- name: rimusz
url: https://charts.rimusz.net
maintainers:
- email: [email protected]
name: rimusz
- name: buildkite
url: https://buildkite.github.io/charts
maintainers:
- email: [email protected]
name: rimusz
- name: cloudposse
url: https://charts.cloudposse.com/incubator/
maintainers:
- email: [email protected]
- name: cloudposse
- name: keel
url: https://charts.keel.sh
maintainers:
- email: [email protected]
name: rusenask
- name: appscode
url: https://charts.appscode.com/stable/
maintainers:
- name: AppsCode Inc
email: [email protected]
- name: gitlab
url: https://charts.gitlab.io/
maintainers:
- name: GitLab
email: [email protected]
- name: bitnami
url: https://charts.bitnami.com/bitnami
maintainers:
- name: Bitnami
email: [email protected]
- name: puppet
url: https://puppetlabs.github.io/puppetserver-helm-chart
maintainers:
- name: Pupperware Team
email: [email protected]
- name: underscorgan
email: [email protected]
- name: Xtigyro
email: [email protected]
- name: slconley
email: [email protected]
- name: fluxcd
url: https://charts.fluxcd.io
maintainers:
- email: [email protected]
name: Flux project
- name: jetstack
url: https://charts.jetstack.io/
maintainers:
- email: [email protected]
name: James Munnelly
- email: [email protected]
name: Christian Simon
- name: ibm-charts
url: https://raw.githubusercontent.com/IBM/charts/master/repo/stable/
maintainers:
- email: [email protected]
name: IBM Cloud Private
- name: infobloxopen
url: https://infobloxopen.github.io/cert-manager/
maintainers:
- email: [email protected]
name: Drew Wells
- name: kanister
url: https://charts.kanister.io/
maintainers:
- email: [email protected]
name: Kanister
- name: fikaworks
url: https://fikaworks.github.io/helm-charts
maintainers:
- email: [email protected]
name: Etienne Tremel
- name: flagger
url: https://flagger.app
maintainers:
- email: [email protected]
name: Stefan Prodan
- name: zammad
url: https://zammad.github.io
maintainers:
- email: [email protected]
name: André Bauer
- name: agones
url: https://agones.dev/chart/stable
maintainers:
- email: [email protected]
name: agones
- name: banzaicloud-stable
url: https://kubernetes-charts.banzaicloud.com
maintainers:
- name: Banzai Cloud
email: [email protected]
- name: kiwigrid
url: https://kiwigrid.github.io
maintainers:
- email: [email protected]
name: André Bauer
- email: [email protected]
name: Axel Koehler
- name: elastic
url: https://helm.elastic.co
maintainers:
- email: [email protected]
name: Elastic
- name: openfaas
url: https://openfaas.github.io/faas-netes
maintainers:
- email: [email protected]
name: Alex Ellis
- email: [email protected]
name: Lucas Roesler
- email: [email protected]
name: Stefan Prodan
- name: inlets
url: https://inlets.github.io/inlets-operator
maintainers:
- email: [email protected]
name: Alex Ellis
- name: odavid
url: https://odavid.github.io/k8s-helm-charts
maintainers:
- email: [email protected]
name: Ohad David
- name: soluto
url: https://charts.soluto.io
maintainers:
- email: [email protected]
name: Soluto
- name: hephy
url: https://charts.teamhephy.com
maintainers:
- name: Team Hephy
email: [email protected]
- name: gabibbo97
url: https://gabibbo97.github.io/charts/
maintainers:
- email: [email protected]
name: Giacomo Longo
- name: presslabs
url: https://presslabs.github.io/charts
maintainers:
- email: [email protected]
name: Presslabs
- email: [email protected]
name: Calin Don
- name: eventstore
url: https://eventstore.github.io/EventStore.Charts
maintainers:
- email: [email protected]
name: Riccardo Di Nuzzo
- email: [email protected]
name: Andrew Meier
- email: [email protected]
name: Jonathan Hinds
- name: pnnl-miscscripts
url: https://pnnl-miscscripts.github.io/charts
maintainers:
- email: [email protected]
name: Kevin Fox
- name: ceph-csi
url: https://ceph.github.io/csi-charts
maintainers:
- email: [email protected]
name: Ceph Developers
- name: fairwinds-stable
url: https://charts.fairwinds.com/stable
maintainers:
- email: [email protected]
name: Fairwinds Chart Maintainers
- name: yourls
url: https://charts.yourls.org
maintainers:
- email: [email protected]
name: YOURLS
- name: hazelcast
url: https://hazelcast.github.io/charts/
maintainers:
- email: [email protected]
name: Rafal Leszko
- email: [email protected]
name: Guglielmo Nigri
- email: [email protected]
name: Mesut Celik
- name: nginx
url: https://helm.nginx.com/stable
maintainers:
- email: [email protected]
- name: nginx-edge
url: https://helm.nginx.com/edge
maintainers:
- email: [email protected]
- name: citrix
url: https://citrix.github.io/citrix-helm-charts/
maintainers:
- email: [email protected]
- email: [email protected]
- email: [email protected]
- name: zooz
url: https://zooz.github.io/helm/
maintainers:
- email: [email protected]
- name: rancher-stable
url: https://releases.rancher.com/server-charts/stable
maintainers:
- email: [email protected]
- name: loki
url: https://grafana.github.io/loki/charts
maintainers:
- name: Loki Maintainers
email: [email protected]
- name: microsoft
url: https://microsoft.github.io/charts/repo/
maintainers:
- name: mstf-charts
email: [email protected]
- email: [email protected]
- name: codecentric
url: https://codecentric.github.io/helm-charts
maintainers:
- email: [email protected]
- name: okgolove
url: https://okgolove.github.io/helm-charts
maintainers:
- email: [email protected]
- name: dhiatn
url: https://dhiatn.github.io/helm-kafka-topics-ui
maintainers:
- email: [email protected]
- name: k8dash
url: https://herbrandson.github.io/k8dash/helm
maintainers:
- email: [email protected]
- name: funkypenguin
url: https://funkypenguin.github.io/helm-charts
maintainers:
- email: [email protected]
- name: mattermost
url: https://helm.mattermost.com
maintainers:
- email: [email protected]
- name: emberstack
url: https://emberstack.github.io/helm-charts
maintainers:
- email: [email protected]
name: Romeo Dumitrescu
# - name: APPUiO
# Switching to a lowercase name until https://github.com/helm/monocular/issues/626
# is fixed
- name: appuio
url: https://charts.appuio.ch
maintainers:
- email: [email protected]
name: APPUiO Team
- name: gomods
url: https://athens.blob.core.windows.net/charts
maintainers:
- email: [email protected]
name: Aaron Schlesinger
- name: zentainer
url: https://charts.zentainer.app
maintainers:
- name: Will Newby
email: [email protected]
- name: promitor
url: https://promitor.azurecr.io/helm/v1/repo
maintainers:
- email: [email protected]
name: Tom Kerkhove
- name: kir4h
url: https://kir4h.github.io/charts
maintainers:
- name: Andres Alvarez
email: [email protected]
- name: hmdmph
url: https://hmdmph.github.io/helm-charts
maintainers:
- email: [email protected]
name: Manoj Prasanna Handapangoda
- name: mtls
url: https://drgrove.github.io/charts
maintainers:
- email: [email protected]
name: Danny Grove
- name: harbor
url: https://helm.goharbor.io
maintainers:
- email: [email protected]
name: Wenkai Yin
- email: [email protected]
name: Daniel Jiang
- name: appdynamics
url: https://appdynamics.github.io/appdynamics-charts
maintainers:
- email: [email protected]
name: Sasha Jeltuhin
- name: billimek
url: https://billimek.com/billimek-charts/
maintainers:
- email: [email protected]
name: Jeff Billimek
- name: choerodon
url: https://openchart.choerodon.com.cn/choerodon/c7n
maintainers:
- email: [email protected]
name: Vink Dong
- name: kedacore
url: https://kedacore.github.io/charts
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- name: seldon
url: https://storage.googleapis.com/seldon-charts
maintainers:
- email: [email protected]
name: Clive Cox
- email: [email protected]
name: Gurminder Sunner
- email: [email protected]
name: Ryan Dawson
- name: gkarthiks
url: https://gkarthiks.github.io/helm-charts
maintainers:
- email: [email protected]
name: Karthikeyan Govindaraj
- name: opsdroid
url: https://helm.opsdroid.dev/
maintainers:
- email: [email protected]
name: Jacob Tomlinson
- name: privatebin
url: https://privatebin.github.io/helm-chart/
maintainers:
- email: [email protected]
name: PrivateBin maintainers
- name: gresearch
url: https://g-research.github.io/charts/
maintainers:
- email: [email protected]
name: G-Research Open Source Developers
- name: smallstep
url: https://smallstep.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Smallstep Open Source Developers
- name: volcano
url: https://volcano-sh.github.io/charts/
maintainers:
- email: [email protected]
name: k82cn
- email: [email protected]
name: kevin-wangzefeng
- name: ory
url: https://k8s.ory.sh/helm/charts
maintainers:
- name: ORY Maintainers
email: [email protected]
- name: cetic
url: https://cetic.github.io/helm-charts
maintainers:
- email: [email protected]
name: alexnuttinck
- email: [email protected]
name: banzo
- name: qamatic
url: https://qamatic.github.io/charts
maintainers:
- email: [email protected]
name: Senthil Maruthaiappan
- email: [email protected]
name: QAMatic Team
- name: sstarcher
url: https://shanestarcher.com/helm-charts/
maintainers:
- email: [email protected]
name: Shane Starcher
- name: lifen
url: https://honestica.github.io/lifen-charts/
maintainers:
- email: [email protected]
name: Matthieu Paret
- name: owkin
url: https://owkin.github.io/charts
maintainers:
- email: [email protected]
name: Owkin DevOps
- email: [email protected]
name: Clément Gautier
- name: simplyzee
url: https://charts.simplyzee.dev/
maintainers:
- email: [email protected]
name: Zee Ahmed
- name: mirusresearch
url: https://mirusresearch.github.io/charts/
maintainers:
- email: [email protected]
name: Alec Troemel
- email: [email protected]
name: Don Spaulding
- name: forseti-security
url: https://forseti-security-charts.storage.googleapis.com/release/
maintainers:
- email: [email protected]
name: Ken Evensen
- email: [email protected]
name: Hannah Shin
- name: hue
url: https://helm.gethue.com
maintainers:
- email: [email protected]
name: Romain Rigaux
- email: [email protected]
name: Hue Team
- name: t3n
url: https://storage.googleapis.com/t3n-helm-charts
maintainers:
- email: [email protected]
name: mschmidt291
- name: kubedex
url: https://kubedex.github.io/charts
maintainers:
- email: [email protected]
name: Steven Acreman
- email: [email protected]
name: Gamunu Balagalla
- name: snl-charts
url: https://snebel29.github.io/snl-charts
maintainers:
- email: [email protected]
name: Sven Nebel
- name: crowdfox
url: https://crowdfoxgmbh.github.io/cfcharts
maintainers:
- email: [email protected]
name: Crowdfox Team
- email: [email protected]
name: Alwin Mark
- name: architectminds
url: https://architectminds.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Meena Alfons
- email: [email protected]
name: Meena Alfons
- name: uswitch
url: https://uswitch.github.io/kiam-helm-charts/charts/
maintainers:
- email: [email protected]
name: uSwitch Infrastructure Team
- name: external-secrets
url: https://godaddy.github.io/kubernetes-external-secrets/
maintainers:
- email: [email protected]
name: jeffpearce
- email: [email protected]
name: keweilu
- name: pfisterer-knox
url: https://pfisterer.github.io/apache-knox-helm/
maintainers:
- email: [email protected]
name: Dennis Pfisterer
- name: aerospike
url: https://aerospike.github.io/aerospike-kubernetes-enterprise
maintainers:
- email: [email protected]
name: Aerospike Team
- name: mogaal
url: https://mogaal.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Alejandro Garrido
- name: argo
url: https://argoproj.github.io/argo-helm
maintainers:
- email: [email protected]
name: Alex Collins
- name: honeydipper
url: https://raw.githubusercontent.com/honeydipper/honeydipper-charts/master/
maintainers:
- email: [email protected]
name: Charles Huang
- name: adwerx
url: https://adwerx.github.io/charts/
maintainers:
- email: [email protected]
name: Josh Bielick
- name: hpe-storage
url: https://hpe-storage.github.io/co-deployments/
maintainers:
- email: [email protected]
name: HPE Containers Dev
- name: squidex
url: https://squidex.github.io/squidex-docker/
maintainers:
- email: [email protected]
name: Sebastian Stehle
- name: liwenhe
url: https://liwenhe1993.github.io/charts/
maintainers:
- email: [email protected]
name: Wenhe Li
- name: yugabyte
url: https://charts.yugabyte.com
maintainers:
- email: [email protected]
name: Andrew Nelson
- email: [email protected]
name: Ram Vaidyanathan
- email: [email protected]
name: Arnav Agarwal
- name: crate
url: https://crate.github.io/helm-charts
maintainers:
- email: [email protected]
name: Oliver Ford
- name: oxyno-zeta
url: https://oxyno-zeta.github.io/helm-charts/stable/
maintainers:
- email: [email protected]
name: Havrileck Alexandre
- name: dragonchain
url: https://dragonchain-charts.s3.amazonaws.com
maintainers:
- email: [email protected]
name: Dragonchain Team
- email: [email protected]
name: Adam Crowder
- name: couchdb
url: https://apache.github.io/couchdb-helm/
maintainers:
- email: [email protected]
name: Apache CouchDB Team
- email: [email protected]
name: Will Holley
- name: cryptlex
url: https://cryptlex.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Cryptlex Team
- name: dask
url: https://helm.dask.org/
maintainers:
- email: [email protected]
name: danielfrg
- email: [email protected]
name: mrocklin
- email: [email protected]
name: beberg
- email: [email protected]
name: jacobtomlinson
- name: substra
url: https://substrafoundation.github.io/charts/
maintainers:
- email: [email protected]
name: Clément Gautier
- email: [email protected]
name: Camille Marini
- name: cloudwatch-agent
url: https://s2504s.github.io/charts
maintainers:
- email: [email protected]
name: Sergey Vasilyev
- name: cloudbees
url: https://charts.cloudbees.com/public/cloudbees
maintainers:
- email: [email protected]
name: CloudBees
- name: concourse
url: https://concourse-charts.storage.googleapis.com/
maintainers:
- email: [email protected]
name: Pivotal Concourse Team
- name: tomkerkhove
url: https://tomkerkhove.azurecr.io/helm/v1/repo
maintainers:
- email: [email protected]
name: Tom Kerkhove
- name: cgroschupp
url: https://cgroschupp.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Christian Groschupp
- name: jenkins
url: https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/chart
maintainers:
- email: [email protected]
name: Tomasz Sęk
- email: [email protected]
name: Jakub Al-Khalili
- name: talend
url: https://talend.github.io/helm-charts-public/stable
maintainers:
- email: [email protected]
name: Sebastien Gandon
- email: [email protected]
name: Alain Saint-Sever
- name: softonic
url: https://charts.softonic.io
maintainers:
- email: [email protected]
name: Softonic
- name: aws
url: https://aws.github.io/eks-charts
maintainers:
- email: [email protected]
name: Stefan Prodan
- email: [email protected]
name: Nick Turner
- email: [email protected]
name: James Straub
- email: [email protected]
name: Kiran Meduri
- email: [email protected]
name: Vipul Sabhayav
- email: [email protected]
name: Jay Pipes
- email: [email protected]
name: Micah Hausler
- name: kubeinvaders
url: https://lucky-sideburn.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Eugenio Marzo
- name: wso2
url: https://helm.wso2.com
maintainers:
- email: [email protected]
name: Chiranga Alwis
- email: [email protected]
name: Aaquiff Rauf
- email: [email protected]>
name: Thilina Manamgoda
- email: [email protected]
name: Dilan U. Ariyaratne
- email: [email protected]
name: Jayanga Dissanayake
- email: [email protected]
name: Shariq Muhammed
- name: crossplane
url: https://charts.crossplane.io/master/
maintainers:
- email: [email protected]
name: Crossplane Maintainers
- name: lohmag
url: https://lohmag.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Nikita Massalitin
- name: cern
url: https://charts.cern.ch/cern/
maintainers:
- email: [email protected]
name: CERN Helm Repo Admins
- name: chubaofs
url: https://chubaofs.github.io/chubaofs-charts
maintainers:
- email: [email protected]
name: Chengyu Liu
- name: ruguodangshi
url: https://ruguodangshi.github.io
maintainers:
- email: [email protected]
name: Hao Shi
- name: mailu
url: https://mailu.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Michael Wyraz
- name: gp42
url: https://ops42.org/helm-charts
maintainers:
- email: [email protected]
name: Gennady Potapov
- name: sumologic
url: https://sumologic.github.io/sumologic-kubernetes-collection
maintainers:
- email: [email protected]
name: Sumo Logic Data Collection
- name: inspur
url: https://inspur-iop.github.io/charts/
maintainers:
- email: [email protected]
name: Leach Kou
- email: [email protected]
name: Eric Zhao
- name: backube
url: https://backube.github.io/helm-charts/
maintainers:
- email: [email protected]
name: John Strunk
- name: k8s-land
url: https://charts.k8s.land
maintainers:
- email: [email protected]
name: Charlie Drage
- name: chartsm
url: https://api.chartsm.com
maintainers:
- email: [email protected]
name: Arnaud De Backer
- name: fold
url: https://charts.foldapp.com
maintainers:
- email: [email protected]
name: Tom Dickman
- name: vmware-tanzu
url: https://vmware-tanzu.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Carlisia Campos
- email: [email protected]
name: Nolan Brubaker
- name: pangeo
url: https://pangeo-data.github.io/helm-chart/
maintainers:
- email: [email protected]
name: Jacob Tomlinson
- email: [email protected]
name: Ryan Abernathy
- email: [email protected]
name: Joe Hamman
- name: jaegertracing
url: https://jaegertracing.github.io/helm-charts
maintainers:
- email: [email protected]
name: cpanato
- email: [email protected]
name: naseemkullah
- name: riskfocus
url: https://riskfocus.github.io/helm-charts-public/
maintainers:
- email: [email protected]
name: Riskfocus
- name: flink-operator
url: https://googlecloudplatform.github.io/flink-on-k8s-operator/
maintainers:
- email: [email protected]
name: dataproc-dev
- name: halkeye
url: https://halkeye.github.io/helm-charts/
maintainers:
- email: [email protected]
name: Gavin Mogan
- name: wavefront
url: https://wavefronthq.github.io/helm/
maintainers:
- email: [email protected]
name: Pierre Tessier
- email: [email protected]
name: Vikram Raman
- name: eclipse-iot
url: https://www.eclipse.org/packages/charts/
maintainers:
- email: [email protected]
name: Thomas Jaeckle
- email: [email protected]
name: Jens Reimann
- email: [email protected]
name: Carsten Lohmann
- email: [email protected]
name: Axel Koehler
- name: ntppool
url: https://charts.ntppool.org/
maintainers:
- email: [email protected]
name: Ask Bjørn Hansen
- name: pomerium
url: https://helm.pomerium.io
maintainers:
- name: Pomerium Team
email: [email protected]
- name: http-folder
url: https://aureliengasser.github.io/charts
maintainers:
- email: [email protected]
name: Aurélien Gasser
- email: [email protected]
name: Clément Gautier
- name: kong
url: https://charts.konghq.com
maintainers:
- name: Harry
email: [email protected]
- name: Shashi
email: [email protected]
- name: Travis
email: [email protected]
- name: dynatrace
url: https://raw.githubusercontent.com/Dynatrace/helm-charts/master/repos/stable/
maintainers:
- email: [email protected]
name: Dynatrace LLC
- name: mojo2600
url: https://mojo2600.github.io/pihole-kubernetes/
maintainers:
- email: [email protected]
name: Christian Erhardt
- email: [email protected]
name: Jeff Billimek
- name: purestorage
url: https://purestorage.github.io/helm-charts
maintainers:
- name: purestorage
email: [email protected]
- name: solace
url: https://solaceproducts.github.io/pubsubplus-kubernetes-quickstart/helm-charts/
maintainers:
- email: [email protected]
name: bczoma
- email: [email protected]
name: KenBarr
- email: [email protected]
name: PhilippeKhalife
- email: [email protected]
name: Solace Support
- name: code-chris
url: https://code-chris.github.io/helm-charts
maintainers:
- name: code-chris
email: [email protected]
- name: larribas
url: https://larribas.me/helm-charts
maintainers:
- name: larribas
email: [email protected]
- name: ealenn
url: https://ealenn.github.io/charts
maintainers:
- name: Rudy Marchandise
email: [email protected]
- name: dgraph
url: https://charts.dgraph.io
maintainers:
- name: Dgraph Labs
email: [email protected]
- name: Daniel Mai
email: [email protected]
- name: Prashant Shahi
email: [email protected]
- name: oteemo
url: https://oteemo.github.io/charts/
maintainers:
- name: Oteemo Support
email: [email protected]
- name: tietoevryfs
url: https://evryfs.github.io/helm-charts/
maintainers:
- name: TietoEVRY Financial Services
email: [email protected]
- name: cleardata
url: https://helm.cleardata.com/
maintainers:
- name: ClearDATA Locate Team
email: [email protected]
- name: meshery
url: https://meshery.io/charts/
maintainers:
- name: Aisuko
email: [email protected]
- name: blazure
url: https://charts.blazure.com
maintainers:
- email: [email protected]
name: Ryan Holt
- name: cdi
url: http://raw.githubusercontent.com/woohhan/cdi-chart/master/
maintainers:
- name: Woohyung Han
email: [email protected]
- name: quarks
url: https://cloudfoundry-incubator.github.io/quarks-helm/
maintainers:
- name: project-quarks
email: [email protected]
- name: dniel
url: https://dniel.github.io/charts/
maintainers:
- name: Daniel Engfeldt
email: [email protected]
- name: cowboysysop
url: https://cowboysysop.github.io/charts/
maintainers:
- name: Sébastien Prud'homme
email: [email protected]
- name: influxdata
url: https://helm.influxdata.com/
maintainers:
- name: David McKay
email: [email protected]
- name: Giacomo Tirabassi
email: [email protected]
- name: eclipse-dirigible
url: https://dirigiblelabs.github.io/charts/
maintainers:
- email: [email protected]
name: Yordan Pavlov
- email: [email protected]
name: Nedelcho Delchev
- email: [email protected]
name: Georgi Pavlov
- name: microcks
url: https://microcks.io/helm
maintainers:
- name: Laurent Broudoux
email: [email protected]
- name: enapter
url: https://enapter.github.io/charts/
maintainers:
- name: Andrey Voronkov
email: [email protected]
- name: Enapter
email: [email protected]
- name: camptocamp
url: http://charts.camptocamp.com
maintainers:
- name: Camptocamp Infrastructure Department
email: [email protected]
- name: camel-k
url: https://apache.github.io/camel-k/charts/
maintainers:
- email: [email protected]
name: Apache Camel Team
- email: [email protected]
name: Nicola Ferraro
- name: trickster
url: https://helm.tricksterproxy.io/
maintainers:
- email: [email protected]
name: James Ranson
- email: [email protected]
name: Adam Ross
- name: gradiant
url: https://gradiant.github.io/charts/
maintainers:
- email: [email protected]
name: Carlos Giraldo
- name: runix
url: https://helm.runix.net/
maintainers:
- email: [email protected]
name: Rowan Ruseler
- name: jitterbit
url: https://jitterbit.github.io/charts/
maintainers:
- name: Sean Krail
email: [email protected]
- name: franzinc