forked from kedacore/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
1545 lines (1545 loc) · 54.1 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:
external-scaler-azure-cosmos-db:
- apiVersion: v2
appVersion: 0.1.0
created: "2024-01-22T12:00:44.143089+01:00"
description: Event-based autoscaler for Azure Cosmos DB change feed consumer applications
digest: a905dedb01db68575cf591eb0b8f6fa1aa1343f0ec239615081e4b57590d8ae9
home: https://github.com/kedacore/external-scaler-azure-cosmos-db
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jatin Sanghvi
- email: [email protected]
name: Tom Kerkhove
name: external-scaler-azure-cosmos-db
sources:
- https://github.com/kedacore/external-scaler-azure-cosmos-db
type: application
urls:
- https://kedacore.github.io/charts/external-scaler-azure-cosmos-db-0.1.0.tgz
version: 0.1.0
keda:
- apiVersion: v2
appVersion: 2.13.0
created: "2024-01-22T12:00:44.207965+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 00ae78109f89f16b12bb5cf23f7071c6c2fe09294514d4f7fd3850c6ce2b8a57
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.13.1.tgz
version: 2.13.1
- apiVersion: v2
appVersion: 2.13.0
created: "2024-01-22T12:00:44.205571+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 0dcc74315d6ca02fbadcfc5e358040580c0ad7919921e07ebf2dcc0b1d2d5f03
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.13.0.tgz
version: 2.13.0
- apiVersion: v2
appVersion: 2.12.1
created: "2024-01-22T12:00:44.202471+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: ee87da063be94f3f65661656602775c38ab723374c9892ecc73c1cea269e64c0
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.12.1.tgz
version: 2.12.1
- apiVersion: v2
appVersion: 2.12.0
created: "2024-01-22T12:00:44.199698+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 5ae5ef24c2e4c38450bb31b7987aea8b19a828c0c6cfa66b8e7ffbc65ebf164d
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.12.0.tgz
version: 2.12.0
- apiVersion: v2
appVersion: 2.11.2
created: "2024-01-22T12:00:44.196513+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 1fc274ebf7c405031297166fa3295f13bc9470f3ca688d595b7549d072b062cd
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.11.2.tgz
version: 2.11.2
- apiVersion: v2
appVersion: 2.11.1
created: "2024-01-22T12:00:44.194004+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 7d10ab788d363c95f496f28d48a74ab7789a5d04c63d9fa3e5d55967c988c0ed
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.11.1.tgz
version: 2.11.1
- apiVersion: v2
appVersion: 2.11.0
created: "2024-01-22T12:00:44.191457+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 8a2100ac1c47053e118b177676fbc07fe427fb9878c31ee7f8b73df0e2a77a06
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.11.0.tgz
version: 2.11.0
- apiVersion: v2
appVersion: 2.10.1
created: "2024-01-22T12:00:44.189233+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 2e75903cda0780a4a8115dc199541315eaccdbfc3ec3da5ab492c8825080cc99
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.24.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.10.2.tgz
version: 2.10.2
- apiVersion: v2
appVersion: 2.10.0
created: "2024-01-22T12:00:44.186936+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 7216ff7cff5567152b895017b97a95b41b788589c4be82169d92906519a24f25
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.24.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.10.1.tgz
version: 2.10.1
- apiVersion: v2
appVersion: 2.10.0
created: "2024-01-22T12:00:44.184494+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 4be1fc8dba9d0e17ff475ca3dcb1183b07164ccaddfc48c67f6369a56f1b1777
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.10.0.tgz
version: 2.10.0
- apiVersion: v2
appVersion: 2.9.3
created: "2024-01-22T12:00:44.248927+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: c455dc8d908b6e8575fe0dbe8275861355cb242a5768f23cd909e543fe077438
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.9.4.tgz
version: 2.9.4
- apiVersion: v2
appVersion: 2.9.2
created: "2024-01-22T12:00:44.247107+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 52a5de6f5585fb2cfe44ba9ddadcf4cd4208138795313e25ee654d82a424faef
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.9.3.tgz
version: 2.9.3
- apiVersion: v2
appVersion: 2.9.2
created: "2024-01-22T12:00:44.245007+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: a1f14048f1788cde92a42412fa789e34d48bb4a8e94d4b43e0c70c8b8c326e43
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.9.2.tgz
version: 2.9.2
- apiVersion: v2
appVersion: 2.9.1
created: "2024-01-22T12:00:44.243179+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 004f2f37845a324badc7228585755ddfd8f5feea957cdca7de9b39499ce1a8d8
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.9.1.tgz
version: 2.9.1
- apiVersion: v2
appVersion: 2.9.0
created: "2024-01-22T12:00:44.241034+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: e0f84de35c0378027f43a732f12a164db05e45947687203020c0031baeee5826
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.23.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.9.0.tgz
version: 2.9.0
- apiVersion: v2
appVersion: 2.8.2
created: "2024-01-22T12:00:44.238954+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: bbd9f4f9312781de5363145d5a937d7c084ea1139f12f5e7f153b3f174332517
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.17.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.8.4.tgz
version: 2.8.4
- apiVersion: v2
appVersion: 2.8.2
created: "2024-01-22T12:00:44.236814+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 04934ca1e41970ca687de13db697cc7fdc24d367af570eba47bed01ad981e1b1
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.17.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.8.3.tgz
version: 2.8.3
- apiVersion: v2
appVersion: 2.8.1
created: "2024-01-22T12:00:44.23479+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: e7bc80a5dde861a5f62b73e9d5c4ce139339b07438344668485fdc435f3109b4
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.20.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.8.2.tgz
version: 2.8.2
- apiVersion: v2
appVersion: 2.8.0
created: "2024-01-22T12:00:44.233042+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: df15ce1a4a27df2f3eb85c7cc803de53dec526bcad92d732a0944bd5288f4845
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.17.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.8.1.tgz
version: 2.8.1
- apiVersion: v2
appVersion: 2.8.0
created: "2024-01-22T12:00:44.231061+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: afa9410e4e6e805979e5c22a17db6dc7dc2720c28b3f176d2eef2708ef0d0a32
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.17.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.8.0.tgz
version: 2.8.0
- apiVersion: v2
appVersion: 2.7.1
created: "2024-01-22T12:00:44.229588+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: eec27b3d7075a8c51cce1fb8d456ac3d458b3bf72fde1cda67c4b554df1e9838
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.17.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.7.2.tgz
version: 2.7.2
- apiVersion: v2
appVersion: 2.7.1
created: "2024-01-22T12:00:44.228146+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: aa1644eb53ec44294993d0611169bd863db39f2bedca1d9ed64b05fbef74087c
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.17.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.7.1.tgz
version: 2.7.1
- apiVersion: v2
appVersion: 2.7.0
created: "2024-01-22T12:00:44.226339+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: f23894c1c4403f36797a0f2ccb497a3b4f2fe761e00b841cc7e1c8ce110d6dc5
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
kubeVersion: '>=v1.17.0-0'
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.7.0.tgz
version: 2.7.0
- apiVersion: v2
appVersion: 2.6.1
created: "2024-01-22T12:00:44.22485+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: af7ec480a66e9f033ab44d28b3df518c0def8ea289996c413dae34e307a0a033
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.6.2.tgz
version: 2.6.2
- apiVersion: v2
appVersion: 2.6.0
created: "2024-01-22T12:00:44.223119+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: b6cf54875f34e8cda992f1ccfe7d594a2f75d25b573a8149721e69ab5ebe3d1d
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.6.1.tgz
version: 2.6.1
- apiVersion: v2
appVersion: 2.6.0
created: "2024-01-22T12:00:44.221741+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 1788eb5f7febdff68275ec5446d30f7f51d0259f343a024639ab1d46228fa00c
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.6.0.tgz
version: 2.6.0
- apiVersion: v2
appVersion: 2.5.0
created: "2024-01-22T12:00:44.220393+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: b23ffc14ff517dbf1e892593364a0b9e660afe2cd49c2e11e8589e0f271ef254
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/main/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Jorge Turrado
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.5.1.tgz
version: 2.5.1
- apiVersion: v2
appVersion: 2.5.0
created: "2024-01-22T12:00:44.219054+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: a8c62e7b9e38adf3ef1837e2828cbd29dfd6c7633e8260bd2aa68c70307c8149
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.5.0.tgz
version: 2.5.0
- apiVersion: v2
appVersion: 2.4.0
created: "2024-01-22T12:00:44.217331+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 41a092fcda3518068d27cf7b86afa5ea2577c8435055ee214bfba11f3a86ef7b
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.4.0.tgz
version: 2.4.0
- apiVersion: v2
appVersion: 2.3.0
created: "2024-01-22T12:00:44.215872+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 8f9d78fb5d090e9887f7914ec8db637344361a8881bb4d8f4c1a9225964b72e0
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.3.2.tgz
version: 2.3.2
- apiVersion: v2
appVersion: 2.3.0
created: "2024-01-22T12:00:44.214418+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: c36eef4718068eee2ac8d3d54e10b15c6ca2b4d1970c84797387152393804578
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.3.0.tgz
version: 2.3.0
- apiVersion: v2
appVersion: 2.2.0
created: "2024-01-22T12:00:44.212593+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 6b6b25799c11e01d2a7edb34d8cf3fb6f82393e7c4e9faa07c38271afad49704
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.2.2.tgz
version: 2.2.2
- apiVersion: v2
appVersion: 2.2.0
created: "2024-01-22T12:00:44.211205+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 7ec5c403d0ad315d2eb9ec0c9d73b36c0baced870f397884d467d46014f24631
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.2.1.tgz
version: 2.2.1
- apiVersion: v2
appVersion: 2.2.0
created: "2024-01-22T12:00:44.209787+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 42b530656687cabb1408abcb137a5d7515243465b65a3a6006927987441fadc0
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.2.0.tgz
version: 2.2.0
- apiVersion: v2
appVersion: 2.1.0
created: "2024-01-22T12:00:44.182452+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 65e2fb98c55740251d7ffa1680ef0edeb42954576deac3856dd468473e321747
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.1.3.tgz
version: 2.1.3
- apiVersion: v2
appVersion: 2.1.0
created: "2024-01-22T12:00:44.181117+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: f336ab24d5ebf96d28da95a03931f2701bb44ce6bb7c30991e3ad14959e2e7e4
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.1.2.tgz
version: 2.1.2
- apiVersion: v2
appVersion: 2.1.0
created: "2024-01-22T12:00:44.179555+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: b6e752d05797cd50ce95a96ae1b6cf8b2b87fc10c27391172beb1acd9fcb18a2
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.1.1.tgz
version: 2.1.1
- apiVersion: v2
appVersion: 2.1.0
created: "2024-01-22T12:00:44.178219+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 91998f9165176f972b954ef9d4077942979cb5e863bb7d76ed29c48f63533531
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.1.0.tgz
version: 2.1.0
- apiVersion: v2
appVersion: 2.0.0
created: "2024-01-22T12:00:44.176805+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: ce2e848f5d7a067d74feb3745da5a834cccdfaa665b5b59d43ad06baa4cdfd04
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.0.1.tgz
version: 2.0.1
- apiVersion: v1
appVersion: 2.0.0
created: "2024-01-22T12:00:44.175272+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: dba8b0e793085165c7d155f9393c5ff112d4714dbce0201404ceb0e67d1b2deb
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.0.0.tgz
version: 2.0.0
- apiVersion: v1
appVersion: 2.0.0-rc2
created: "2024-01-22T12:00:44.173671+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: bad82c28c5ca1d5e69fac4bfcc7a999d5d2b2afd9b19ff6deb9a48811110eb0d
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.0.0-rc3.tgz
version: 2.0.0-rc3
- apiVersion: v2
appVersion: 2.0.0-rc2
created: "2024-01-22T12:00:44.172356+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: a4042ba14e595a8e82c9a39d8987625b89292aa86029686a3603b724fda36ca0
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
type: application
urls:
- https://kedacore.github.io/charts/keda-2.0.0-rc2.tgz
version: 2.0.0-rc2
- apiVersion: v1
appVersion: 2.0.0-rc
created: "2024-01-22T12:00:44.170966+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: 3a952f2aaa0ea35ee4335f0b168f44fcf37c5c5ab7e9b9bba7e731c42f04ad61
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.0.0-rc.tgz
version: 2.0.0-rc
- apiVersion: v1
appVersion: 2.0.0-beta
created: "2024-01-22T12:00:44.16938+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: fbafc7ae564c13a0eab7062667759f6e93595c97125731a27e8290574e1d570c
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls:
- https://kedacore.github.io/charts/keda-2.0.0-beta1.2.tgz
version: 2.0.0-beta1.2
- apiVersion: v1
appVersion: 2.0.0-beta
created: "2024-01-22T12:00:44.167106+01:00"
description: Event-based autoscaler for workloads on Kubernetes
digest: db9e7d2423423463285f2e9d5b940a63b41d6555ba9fcab8fda0e6a757ccefa9
home: https://github.com/kedacore/keda
icon: https://raw.githubusercontent.com/kedacore/keda/master/images/keda-logo-500x500-white.png
maintainers:
- email: [email protected]
name: Ahmed ElSayed
- email: [email protected]
name: Tom Kerkhove
- email: [email protected]
name: Zbynek Roubalik
name: keda
sources:
- https://github.com/kedacore/keda
urls: