-
Notifications
You must be signed in to change notification settings - Fork 287
/
index.yaml
10479 lines (10133 loc) · 453 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:
aws-ebs-csi-driver:
- apiVersion: v2
appVersion: 1.16.1
created: "2024-10-04T09:09:20Z"
description: A Helm chart for AWS EBS CSI Driver
digest: 17f959dcc5d08e3d250ecc3f45a941537b195c4fc46ec508ac8dc38f80e86e32
home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver
keywords:
- aws
- ebs
- csi
kubeVersion: '>=1.17.0-0'
maintainers:
- name: Kubernetes Authors
url: https://github.com/kubernetes-sigs/aws-ebs-csi-driver/
name: aws-ebs-csi-driver
sources:
- https://github.com/kubernetes-sigs/aws-ebs-csi-driver
urls:
- charts/aws-ebs-csi-driver-2.17.1.tgz
version: 2.17.1
- annotations:
artifacthub.io/changes: |
- kind: added
description: Custom controller.updateStrategy to set controller deployment strategy.
apiVersion: v2
appVersion: 1.13.0
created: "2023-03-13T09:31:30Z"
description: A Helm chart for AWS EBS CSI Driver
digest: 67335febc4b2f79f0f598274e4cae5f10c7afb137812fb4a2d52f4ee1352d140
home: https://github.com/kubernetes-sigs/aws-ebs-csi-driver
keywords:
- aws
- ebs
- csi
kubeVersion: '>=1.17.0-0'
maintainers:
- email: [email protected]
name: leakingtapan
- name: krmichel
url: https://github.com/krmichel
name: aws-ebs-csi-driver
sources:
- https://github.com/kubernetes-sigs/aws-ebs-csi-driver
urls:
- charts/aws-ebs-csi-driver-2.13.0.tgz
version: 2.13.0
aws-s3-proxy:
- apiVersion: v1
appVersion: "2.0"
created: "2024-10-04T09:09:20Z"
description: 'Reverse proxy for AWS S3 with basic authentication. See here for
configuration via environment variables: https://github.com/pottava/aws-s3-proxy#usage '
digest: d91faeda870ddd57b9fa95bf54879634d02e2b1bc95601e219b92836b50547fa
home: https://github.com/pottava/aws-s3-proxy
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-s3-proxy
urls:
- charts/aws-s3-proxy-0.1.5.tgz
version: 0.1.5
- apiVersion: v1
appVersion: "2.0"
created: "2024-06-26T11:55:22Z"
description: 'Reverse proxy for AWS S3 with basic authentication. See here for
configuration via environment variables: https://github.com/pottava/aws-s3-proxy#usage '
digest: 15b612a69c89da15a7a38141d696dab0c487fc9478b26c5abe712e21f56a13fc
home: https://github.com/pottava/aws-s3-proxy
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-s3-proxy
urls:
- charts/aws-s3-proxy-0.1.4.tgz
version: 0.1.4
- apiVersion: v1
appVersion: "2.0"
created: "2023-06-12T17:37:57Z"
description: 'Reverse proxy for AWS S3 with basic authentication. See here for
configuration via environment variables: https://github.com/pottava/aws-s3-proxy#usage '
digest: 7eb75563f31d09e0cc18b36e242fcbeabbfbd356acc02d0edd0b44c41351958e
home: https://github.com/pottava/aws-s3-proxy
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-s3-proxy
urls:
- charts/aws-s3-proxy-0.1.3.tgz
version: 0.1.3
- apiVersion: v1
appVersion: "2.0"
created: "2021-08-19T13:59:42Z"
description: |
Reverse proxy for AWS S3 with basic authentication.
See here for configuration via environment variables: https://github.com/pottava/aws-s3-proxy#usage
digest: d3e2a084696e19d5105a961ea0274c166e0c6aa1bbb92eb971d931498af0937c
home: https://github.com/pottava/aws-s3-proxy
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-s3-proxy
urls:
- charts/aws-s3-proxy-0.1.2.tgz
version: 0.1.2
- apiVersion: v1
appVersion: "2.0"
created: "2020-11-13T08:31:55Z"
description: |
Reverse proxy for AWS S3 with basic authentication.
See here for configuration via environment variables: https://github.com/pottava/aws-s3-proxy#usage
digest: 24e59106da5a1548e7d05526ebcf3e27df54b5a8474856b11a2c8a35bf9c1bcc
home: https://github.com/pottava/aws-s3-proxy
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-s3-proxy
urls:
- charts/aws-s3-proxy-0.1.1.tgz
version: 0.1.1
aws-service-events-exporter:
- apiVersion: v2
appVersion: 1.0.0
created: "2024-10-04T09:09:21Z"
description: 'This helm chart exports aws service events to prometheus via aws
SQS queue, this include: - [RDS events](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html)
- [Elasticache events](https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/ECEvents.Viewing.html) '
digest: f6b604b8e5c8cd65dc191b52f4f340a9bcc9a2d25838202d1f64624f3eb32800
home: https://github.com/deliveryhero/aws-service-events-exporter
maintainers:
- email: [email protected]
name: nyambati
- email: [email protected]
name: javad-hajiani
name: aws-service-events-exporter
sources:
- https://github.com/deliveryhero/aws-service-events-exporter
type: application
urls:
- charts/aws-service-events-exporter-1.0.5.tgz
version: 1.0.5
- apiVersion: v2
appVersion: 1.0.0
created: "2021-09-02T12:05:36Z"
description: |
This helm chart exports aws service events to prometheus via aws SQS queue, this include:
- [RDS events](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html)
- [Elasticache events](https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/ECEvents.Viewing.html)
digest: ea0df8f57d2fd48a7e56f69b5ccc526cd6b677d479a99cc177dd40a0c69bbdc1
home: https://github.com/deliveryhero/aws-service-events-exporter
maintainers:
- email: [email protected]
name: nyambati
name: aws-service-events-exporter
sources:
- https://github.com/deliveryhero/aws-service-events-exporter
type: application
urls:
- charts/aws-service-events-exporter-1.0.4.tgz
version: 1.0.4
- apiVersion: v2
appVersion: 1.0.0
created: "2021-08-12T13:34:50Z"
description: |
This helm chart exports aws service events to prometheus via aws SQS queue, this include:
- [RDS events](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html)
- [Elasticache events](https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/ECEvents.Viewing.html)
digest: 0207c25c4b616b62391f9ded7d0031263ee9c0a048afda7b2d367ceb4edb4ce0
home: https://github.com/deliveryhero/aws-service-events-exporter
maintainers:
- email: [email protected]
name: nyambati
name: aws-service-events-exporter
sources:
- https://github.com/deliveryhero/aws-service-events-exporter
type: application
urls:
- charts/aws-service-events-exporter-1.0.3.tgz
version: 1.0.3
- apiVersion: v2
appVersion: 1.0.0
created: "2021-08-06T19:44:39Z"
description: |
This helm chart exports aws service events to prometheus via aws SQS queue, this include:
- [RDS events](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html)
- [Elasticache events](https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/ECEvents.Viewing.html)
digest: eebfe161d93447b2e8530e006be169fe552ad707acdf57e8e474cff081989a5f
home: https://github.com/deliveryhero/aws-service-events-exporter
maintainers:
- email: [email protected]
name: nyambati
name: aws-service-events-exporter
sources:
- https://github.com/deliveryhero/aws-service-events-exporter
type: application
urls:
- charts/aws-service-events-exporter-1.0.2.tgz
version: 1.0.2
- apiVersion: v2
appVersion: 1.0.0
created: "2021-05-19T08:11:12Z"
description: |
This helm chart exports aws service events to prometheus via aws SQS queue, this include:
- [RDS events](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html)
- [Elasticache events](https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/ECEvents.Viewing.html)
digest: 480d0d6a645a2551d4b04ad85e006e4a5fe91e9de88d3ff6baa1ad8fb1e3509f
home: https://github.com/deliveryhero/aws-service-events-exporter
maintainers:
- email: [email protected]
name: nyambati
name: aws-service-events-exporter
sources:
- https://github.com/deliveryhero/aws-service-events-exporter
type: application
urls:
- charts/aws-service-events-exporter-1.0.1.tgz
version: 1.0.1
- apiVersion: v2
appVersion: 1.0.0
created: "2021-04-30T09:30:15Z"
description: |
This helm chart exports aws service events to prometheus via aws SQS queue, this include:
- [RDS events](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html)
- [Elasticache events](https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/ECEvents.Viewing.html)
digest: 0ee87baf6602ae1c64df8a926270233029bfd34d055fc5449adb1d28c1dd36a3
home: https://github.com/deliveryhero/aws-service-events-exporter
maintainers:
- email: [email protected]
name: nyambati
name: aws-service-events-exporter
sources:
- https://github.com/deliveryhero/aws-service-events-exporter
type: application
urls:
- charts/aws-service-events-exporter-1.0.0.tgz
version: 1.0.0
aws-service-quotas-exporter:
- apiVersion: v2
appVersion: v1.3.2
created: "2024-10-04T09:09:22Z"
description: This exporter exports AWS service quotas and usage as Prometheus
metrics
digest: 855132c7ece746443d08c7adb51a6d1134f571e568e24ac8fcf3f7ceae52ec7b
home: https://github.com/thought-machine/aws-service-quotas-exporter
keywords:
- aws
- service
- quotas
- exporter
maintainers:
- email: [email protected]
name: nyambati
name: aws-service-quotas-exporter
sources:
- https://github.com/thought-machine/aws-service-quotas-exporter
type: application
urls:
- charts/aws-service-quotas-exporter-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: v1.3.2
created: "2023-02-28T16:02:46Z"
description: This exporter exports AWS service quotas and usage as Prometheus
metrics
digest: 2b2f49f1e5fd55f5f0f759c14dfd91e8d1c5b6ef9acb277d53a117a0d240ebbe
home: https://github.com/thought-machine/aws-service-quotas-exporter
keywords:
- aws
- service
- quotas
- exporter
maintainers:
- email: [email protected]
name: nyambati
name: aws-service-quotas-exporter
sources:
- https://github.com/thought-machine/aws-service-quotas-exporter
type: application
urls:
- charts/aws-service-quotas-exporter-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: v1.3.2
created: "2023-02-10T14:50:25Z"
description: This exporter exports AWS service quotas and usage as Prometheus
metrics
digest: 9dd59fd47b0d9ad822b32679b90781284473715ab9c24bf54404663786fd8c9a
home: https://github.com/thought-machine/aws-service-quotas-exporter
keywords:
- aws
- service
- quotas
- exporter
maintainers:
- email: [email protected]
name: nyambati
name: aws-service-quotas-exporter
sources:
- https://github.com/thought-machine/aws-service-quotas-exporter
type: application
urls:
- charts/aws-service-quotas-exporter-0.1.0.tgz
version: 0.1.0
aws-storage-class:
- apiVersion: v1
created: "2024-10-04T09:09:22.013103906Z"
description: 'Creates a StorageClass. From here: https://github.com/kubernetes/kubernetes/blob/master/cluster/addons/storage-class/aws/default.yaml'
digest: a5171263e4f3379096a2a74608074d4c31140c76e43a4ce489aa72703c4252cb
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-storage-class
urls:
- charts/aws-storage-class-0.1.7.tgz
version: 0.1.7
- apiVersion: v1
created: "2023-06-01T08:35:47Z"
description: 'Creates a StorageClass. From here: https://github.com/kubernetes/kubernetes/blob/master/cluster/addons/storage-class/aws/default.yaml'
digest: 51e424b48be5e8e6bc5488b85c76fd54b3aa8927b767e0c20cb9b3a211411b34
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-storage-class
urls:
- charts/aws-storage-class-0.1.6.tgz
version: 0.1.6
- apiVersion: v1
created: "2022-12-20T10:47:27Z"
description: 'Creates a StorageClass. From here: https://github.com/kubernetes/kubernetes/blob/master/cluster/addons/storage-class/aws/default.yaml'
digest: 6c0f2033e009aa92b04a74bdbb1723ca85de12456ed1be9cccb6defc265641a8
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-storage-class
urls:
- charts/aws-storage-class-0.1.5.tgz
version: 0.1.5
- apiVersion: v1
created: "2022-12-08T15:02:26.007297368Z"
description: 'Creates a StorageClass. From here: https://github.com/kubernetes/kubernetes/blob/master/cluster/addons/storage-class/aws/default.yaml'
digest: c4109a153a23e9e8fa419a21048c28dffb172fab2fedb20fc7108d7bb271ce73
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-storage-class
urls:
- charts/aws-storage-class-0.1.4.tgz
version: 0.1.4
- apiVersion: v1
created: "2022-12-01T12:26:50Z"
description: 'Creates a StorageClass. From here: https://github.com/kubernetes/kubernetes/blob/master/cluster/addons/storage-class/aws/default.yaml'
digest: 921ff7a8c4c7ad122e9a47f78b62811ddbc7ab1d63e333582091fdc359e3e537
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-storage-class
urls:
- charts/aws-storage-class-0.1.3.tgz
version: 0.1.3
- apiVersion: v1
created: "2022-11-29T12:01:14Z"
description: 'Creates a StorageClass. From here: https://github.com/kubernetes/kubernetes/blob/master/cluster/addons/storage-class/aws/default.yaml'
digest: 44af9d3caab671c2cfbccde63222120a1db85f0f92bbe861e27c5d67847930ed
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-storage-class
urls:
- charts/aws-storage-class-0.1.2.tgz
version: 0.1.2
- apiVersion: v1
created: "2021-09-16T08:58:16Z"
description: 'Creates a StorageClass. From here: https://github.com/kubernetes/kubernetes/blob/master/cluster/addons/storage-class/aws/default.yaml'
digest: 8768b003cbafd92bb6d06b6059dc03840e19c6df9eb2f6e471ec92670a99f2a4
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: aws-storage-class
urls:
- charts/aws-storage-class-0.1.1.tgz
version: 0.1.1
backstage:
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2024-10-04T09:09:23Z"
description: A Helm chart for Backstage
digest: 762d39ed584bf263b76ec28c65cc17d0542e04f5ebcf1fdf99169bb1676aca22
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.13.tgz
version: 0.1.13
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2022-12-02T14:52:10Z"
description: A Helm chart for Backstage
digest: 7345e28b20945c9697af36a86c2892c68685660c6122209b9d433f3879eb4982
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.12.tgz
version: 0.1.12
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2021-07-08T12:47:12Z"
description: A Helm chart for Backstage
digest: 3a1d47731a412884eeeb749bc667aa56af7a80ec9ab3fe225a3ff380c12e1b1a
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.11.tgz
version: 0.1.11
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2021-07-01T10:12:43Z"
description: A Helm chart for Backstage
digest: 75618fed212a2bf30a0c7ae5cbf1a0250ff2b59f6ad6a3fc1c0ddf320956c7ad
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.10.tgz
version: 0.1.10
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2021-06-30T19:42:09Z"
description: A Helm chart for Backstage
digest: bf27369d848f9834a469d041dcd36e4033491cd2de8f5d1ac6b1e19a4fd9721b
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.9.tgz
version: 0.1.9
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2021-06-30T19:12:08Z"
description: A Helm chart for Backstage
digest: 3cf036aecacc1a291731c48d65b4049458d15ccbd46f2431f02905e161aa4afc
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.8.tgz
version: 0.1.8
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2021-06-30T17:24:18Z"
description: A Helm chart for Backstage
digest: a44a9ef17ebc4075b43367a6ba2b5d37c02accc816d45d91b43aa14ee540777b
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2021-06-30T14:03:22Z"
description: A Helm chart for Backstage
digest: ca75a0cff07ace5365cebe040197003c6d8df34c9bb8b4dbeeb58c5fdc409abc
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2021-06-22T18:24:44Z"
description: A Helm chart for Backstage
digest: a751eb26c3d88d4b401eb7d5a726c2dc482540deaea13cdd4ec2244c4c111288
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2021-04-30T09:30:17Z"
description: A Helm chart for Backstage
digest: 06a8349506dc46f2505ff9ee630e8a437833750712b7a718041e3293911bb92a
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2021-04-20T12:17:45Z"
description: A Helm chart for Backstage
digest: 09ed2791cb9b6deb0341b6c97116b3b2883f5a3ccf7f03110cf0adbaa73f956d
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2020-12-31T15:12:58Z"
description: A Helm chart for Backstage
digest: cae2580d6ce510076fb6a6431fd428e8829712c0e8906c02f7247caf1e169a44
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: v0.1.1-alpha.23
created: "2020-12-30T10:12:55Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 9.4.1
description: A Helm chart for Backstage
digest: 1a87ffaff32b03b7fd5f61d84ff7667c047c294662b34897693c3c606dbb989f
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: javad-hajiani
- email: [email protected]
name: nyambati
name: backstage
sources:
- https://github.com/backstage/backstage
- https://github.com/spotify/lighthouse-audit-service
type: application
urls:
- charts/backstage-0.1.1.tgz
version: 0.1.1
backstage-mono:
- apiVersion: v2
appVersion: 0.0.1
created: "2024-10-04T09:09:24Z"
description: A Helm chart for simple backstage deployment. This chart deploys
a single pod for both backstage frontend and backend.
digest: 495432982fb31def845164da663e0337d487b09aed2838bed34220d1f30c4cdd
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: goelankitt
name: backstage-mono
type: application
urls:
- charts/backstage-mono-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 0.0.1
created: "2021-08-16T19:26:31Z"
description: A Helm chart for simple backstage deployment. This chart deploys
a single pod for both backstage frontend and backend.
digest: a02233bd145033f07b78326f5234009d7ff6ce1ace174bf61c08529eb37948c7
home: https://github.com/backstage/backstage
maintainers:
- email: [email protected]
name: goelankitt
name: backstage-mono
type: application
urls:
- charts/backstage-mono-0.1.0.tgz
version: 0.1.0
cachet:
- apiVersion: v1
appVersion: 2.3.15
created: "2024-10-04T09:09:36Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.6.26
description: The open source status page system
digest: a0696772f035bc38116578988af90cf4e8b124891f90e1f1725bbb5a54c979ec
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.3.4.tgz
version: 1.3.4
- apiVersion: v1
appVersion: 2.3.15
created: "2024-01-02T15:45:13Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.6.26
description: The open source status page system
digest: 99dd99c3418a37c5072123a2ec4633049abbf13b3e7e6ba0da69afcce710811d
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.3.3.tgz
version: 1.3.3
- apiVersion: v1
appVersion: 2.3.15
created: "2023-11-16T10:29:43Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.6.26
description: The open source status page system
digest: e5083aa11061afe31bd5ebbeebfd899a12cfa1ee0f750ee6cd68d2264dfda674
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.3.2.tgz
version: 1.3.2
- apiVersion: v1
appVersion: 2.3.15
created: "2022-10-24T14:46:13Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 11.6.26
description: The open source status page system
digest: 25306deb53f994e125459f8d4de10e8a0dde804ed2fc1b6ab56083f88be892c3
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.3.1.tgz
version: 1.3.1
- apiVersion: v1
appVersion: 2.3.15
created: "2022-05-30T14:18:12Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 9.1.4
description: The open source status page system
digest: 7835b470c04d0660460b2cb1d3c89ba81418f378367bd0885f00d77fda01b200
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.3.0.tgz
version: 1.3.0
- apiVersion: v1
appVersion: 2.3.15
created: "2022-01-13T11:15:33Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 9.1.4
description: The open source status page system
digest: c577790cd1bb33b14e810117fc968eedcc323388b43c82293df1210a70531aea
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.2.9.tgz
version: 1.2.9
- apiVersion: v1
appVersion: 2.3.15
created: "2021-08-02T16:01:57Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 9.1.4
description: The open source status page system
digest: c754996ffcd3fcff0bfa76e2e31127788c69932e4735a6239a2f14a695e7e70d
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.2.8.tgz
version: 1.2.8
- apiVersion: v1
appVersion: 2.3.15
created: "2021-05-03T14:35:52Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 9.1.4
description: The open source status page system
digest: 171f92abb62be3ed94677576340c42547cb35386f03b929343d43a0f323612ee
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.2.7.tgz
version: 1.2.7
- apiVersion: v1
appVersion: 2.3.15
created: "2020-11-25T15:13:03Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 9.1.4
description: The open source status page system
digest: 461bb0835bf8b26f6e9811de0a97ba1bbb941791feb7e5f8f1902fecbf904c9a
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.2.6.tgz
version: 1.2.6
- apiVersion: v1
appVersion: 2.3.15
created: "2020-09-01T08:19:05Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 9.1.4
description: The open source status page system
digest: 08d04446dde8acac78042b82eb9a4fcc3ae6bc8bc5b59b768c6288d1423ddb6a
home: https://cachethq.io/
maintainers:
- email: [email protected]
name: nyambati
name: cachet
sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
urls:
- charts/cachet-1.2.5.tgz
version: 1.2.5
cloudhealth-collector:
- apiVersion: v1
appVersion: "957"
created: "2024-10-04T09:09:37Z"
description: 'Deploys a k8s pod to collect data and generate reports based or
resources usages, costs and other possibilities. Please check more about it
on: https://www.cloudhealthtech.com/solutions/containers Chart based on its
official k8s resources: https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml A
Cloudhealth account is required. To install the chart a valid api token should
be generated from adding a new cluster: https://apps.cloudhealthtech.com/containers_clusters '
digest: 3922906bd2ad2f5f8f3fc29327056282b8f670c6097c24fd8971b6439695f3cc
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: cloudhealth-collector
sources:
- https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml
urls:
- charts/cloudhealth-collector-0.1.6.tgz
version: 0.1.6
- apiVersion: v1
appVersion: "957"
created: "2022-10-28T14:31:30Z"
description: 'Deploys a k8s pod to collect data and generate reports based or
resources usages, costs and other possibilities. Please check more about it
on: https://www.cloudhealthtech.com/solutions/containers Chart based on its
official k8s resources: https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml A
Cloudhealth account is required. To install the chart a valid api token should
be generated from adding a new cluster: https://apps.cloudhealthtech.com/containers_clusters '
digest: 40c8b1bbba969e3cd6e9109afde46633f9ab666538c82b47d04f5a3c29ea6f46
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: cloudhealth-collector
sources:
- https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml
urls:
- charts/cloudhealth-collector-0.1.5.tgz
version: 0.1.5
- apiVersion: v1
appVersion: "957"
created: "2022-10-13T09:30:48Z"
description: 'Deploys a k8s pod to collect data and generate reports based or
resources usages, costs and other possibilities. Please check more about it
on: https://www.cloudhealthtech.com/solutions/containers Chart based on its
official k8s resources: https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml A
Cloudhealth account is required. To install the chart a valid api token should
be generated from adding a new cluster: https://apps.cloudhealthtech.com/containers_clusters '
digest: 47b394b2a3072c4742b55db913c79c302535f47d8f26aaaf49872529ed3ba481
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: cloudhealth-collector
sources:
- https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml
urls:
- charts/cloudhealth-collector-0.1.4.tgz
version: 0.1.4
- apiVersion: v1
appVersion: "957"
created: "2022-08-23T11:45:28Z"
description: 'Deploys a k8s pod to collect data and generate reports based or
resources usages, costs and other possibilities. Please check more about it
on: https://www.cloudhealthtech.com/solutions/containers Chart based on its
official k8s resources: https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml A
Cloudhealth account is required. To install the chart a valid api token should
be generated from adding a new cluster: https://apps.cloudhealthtech.com/containers_clusters '
digest: c767a8105c7007989f958647c96da4e51aa87dda621acab62fe9dab6d84eff0a
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: cloudhealth-collector
sources:
- https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml
urls:
- charts/cloudhealth-collector-0.1.3.tgz
version: 0.1.3
- apiVersion: v1
appVersion: "957"
created: "2022-08-20T19:55:46Z"
description: 'Deploys a k8s pod to collect data and generate reports based or
resources usages, costs and other possibilities. Please check more about it
on: https://www.cloudhealthtech.com/solutions/containers Chart based on its
official k8s resources: https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml A
Cloudhealth account is required. To install the chart a valid api token should
be generated from adding a new cluster: https://apps.cloudhealthtech.com/containers_clusters '
digest: 4aa278a21bff6dd38b3d366b3d67c30592544d4b48dd6b0e1e3744bec1c833a5
home: https://github.com/deliveryhero/helm-charts
maintainers:
- email: [email protected]
name: max-rocket-internet
name: cloudhealth-collector
sources:
- https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml
urls:
- charts/cloudhealth-collector-0.1.2.tgz
version: 0.1.2
- apiVersion: v1
appVersion: "957"
created: "2022-05-30T07:41:50Z"
description: 'Deploys a k8s pod to collect data and generate reports based or
resources usages, costs and other possibilities. Please check more about it
on: https://www.cloudhealthtech.com/solutions/containers Chart based on its
official k8s resources: https://s3.amazonaws.com/cloudhealth-public/containers/kubernetes-collector-pod-template.yaml A