-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.yaml
6241 lines (6241 loc) · 216 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-calico:
- apiVersion: v1
appVersion: 3.8.1
created: "2022-02-24T13:56:14.55438451Z"
description: A Helm chart for installing Calico on AWS
digest: 1d16e752e6cfca2177c6229341f5b0da243dced505de04fde2eb160866c861c6
icon: https://www.projectcalico.org/wp-content/uploads/2019/09/Calico_Logo_Large_Calico.png
name: aws-calico
urls:
- https://skyscrapers.github.io/charts/aws-calico-0.2.3.tgz
version: 0.2.3
- apiVersion: v1
appVersion: 3.8.1
created: "2020-05-12T11:49:04.886256883Z"
description: A Helm chart for installing Calico on AWS
digest: ed3a883837334756b791a689938bd6bb45e5f242148905c513567c6a58b2a33a
icon: https://www.projectcalico.org/wp-content/uploads/2019/09/Calico_Logo_Large_Calico.png
name: aws-calico
urls:
- https://skyscrapers.github.io/charts/aws-calico-0.2.2.tgz
version: 0.2.2
aws-rabbitmq-monitoring:
- apiVersion: v2
appVersion: 0.17.1
created: "2024-09-25T09:19:54.457946071Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.25.2
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: 7ed0e70b1b34bc719b8611651f3b70934d55e5aca0598fa0db445cd26052f3d8
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.7.2.tgz
version: 0.7.2
- apiVersion: v2
appVersion: 0.17.1
created: "2023-09-15T08:25:59.979669519Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.25.1
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: 2dfc15446bbe58714b9b8d5f0efb8b33f97d8b7286202d74f3b83dd6b8972633
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.7.1.tgz
version: 0.7.1
- apiVersion: v2
appVersion: 0.17.0
created: "2023-07-06T12:44:15.907330777Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.25.0
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: f809fc6ad207e21e9ca961bc18db8960805e05b00e167cbc4416b1727fb649b1
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.7.0.tgz
version: 0.7.0
- apiVersion: v2
appVersion: 0.17.0
created: "2023-05-08T12:30:16.593632313Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.22.0
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: e00bdb995de13735cfb1ed76fcefd9c11856ca01620b6994736e63619c1f4f58
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.6.0.tgz
version: 0.6.0
- apiVersion: v2
appVersion: 0.17.0
created: "2022-09-30T13:32:53.580584722Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.21.0
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: 7d9c257aa87e663186f46e1e851912ca0dc171343f0c74cfd6d5fa25a2a5db3e
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.5.0.tgz
version: 0.5.0
- apiVersion: v2
appVersion: 0.17.0
created: "2022-09-29T08:27:09.194217694Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.19.2
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: ca8803cf899733da9b3cb4df4543412be809efb6b5ac0f2c6a0b2f3e255ce490
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
appVersion: 0.17.0
created: "2022-05-06T08:32:45.68434881Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.18.0
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: 7cf50c6f9efd27f47638b9f3ee34e7fbb8cf18b2dd13a448610732ebfaef8857
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.3.1.tgz
version: 0.3.1
- apiVersion: v2
appVersion: 0.17.0
created: "2022-04-25T11:44:43.152538413Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.18.0
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: f2d9ff1a674528ab11bbf7072346cce43c4369e03cc2975cd1ea82dea7d4913a
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
appVersion: 0.16.0
created: "2021-12-01T10:50:51.224628335Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.17.1
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: aebc1fc6bde8826e29aca1550ee5fc3adb9d49705f9cca9f42ef348f48f16c40
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
appVersion: 0.16.0
created: "2021-09-21T08:37:14.991604442Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.16.0
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: fbdb989d33f167b9f2f977c5a8692983ed3813374eacf6e2868a4e0597c62134
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: 0.16.0
created: "2021-06-09T13:43:27.831252743Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.16.0
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: 4b98bb21da47f6773a8756e51e8935e12e2e84a9b9454f06a52c444dfa0f4439
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 0.16.0
created: "2021-06-09T12:26:57.477895429Z"
dependencies:
- name: prometheus-cloudwatch-exporter
repository: https://prometheus-community.github.io/helm-charts
version: 0.16.0
description: Deploys a cloudwatch-exporter configured to collect Amazon MQ RabbitMQ
metrics.
digest: 00a3dfd5714a816bc7103e948a548bd052694047653258d6a4b6bb58ba14f030
name: aws-rabbitmq-monitoring
type: application
urls:
- https://skyscrapers.github.io/charts/aws-rabbitmq-monitoring-0.1.0.tgz
version: 0.1.0
aws-service-operator:
- apiVersion: v1
appVersion: v0.0.1-alpha4
created: "2022-02-24T13:56:14.556661424Z"
description: The AWS Service Operator allows you to manage AWS resources using
Kubernetes Custom Resource Definitions.
digest: 6a86565c745e147760f4ab5781362a6f5e87473b756d7fef41b450fa5dad12f0
home: https://github.com/awslabs/aws-service-operator
keywords:
- AWS
maintainers:
- email: heichris@amazon.com
name: christopherhein
- email: ash.caire@gmail.com
name: acaire
name: aws-service-operator
sources:
- https://github.com/awslabs/aws-service-operator
urls:
- https://skyscrapers.github.io/charts/aws-service-operator-0.0.1-alpha4.tgz
version: 0.0.1-alpha4
cloudwatch-monitoring:
- apiVersion: v1
created: "2019-11-29T11:00:21.530589823Z"
description: Cloudwatch monitoring using Prometheus-operator and Grafana.
digest: 610c333203978b8447b76ea839ea45a26c98a439626db777136f51e5619815cc
home: https://github.com/skyscrapers/charts/
keywords:
- grafana
- kube-prometheus
- monitoring
- prometheus
- cloudwatch
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cloudwatch-monitoring
sources:
- http://github.com/prometheus/cloudwatch_exporter
- https://github.com/kubernetes/charts/tree/master/stable/prometheus-cloudwatch-exporter
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cloudwatch-monitoring-0.1.2.tgz
version: 0.1.2
- apiVersion: v1
created: "2018-11-20T16:13:53.340857985Z"
description: Cloudwatch monitoring using Prometheus-operator and Grafana.
digest: 923914cdd5ebe3040b8ec3a709689937eb1d04f6e4b11e0c54655334fdafa4de
home: https://github.com/skyscrapers/charts/
keywords:
- grafana
- kube-prometheus
- monitoring
- prometheus
- cloudwatch
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cloudwatch-monitoring
sources:
- http://github.com/prometheus/cloudwatch_exporter
- https://github.com/kubernetes/charts/tree/master/stable/prometheus-cloudwatch-exporter
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cloudwatch-monitoring-0.1.1.tgz
version: 0.1.1
- apiVersion: v1
created: "2018-07-17T14:46:01.433977967Z"
description: Cloudwatch monitoring using Prometheus-operator and Grafana.
digest: 8079c753badba56b42afb1c1e3b772b5a5f3644c77749b95797a58f60bce62ab
home: https://github.com/skyscrapers/charts/
keywords:
- grafana
- kube-prometheus
- monitoring
- prometheus
- cloudwatch
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cloudwatch-monitoring
sources:
- http://github.com/prometheus/cloudwatch_exporter
- https://github.com/kubernetes/charts/tree/master/stable/prometheus-cloudwatch-exporter
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cloudwatch-monitoring-0.1.0.tgz
version: 0.1.0
cluster-monitoring:
- apiVersion: v1
created: "2022-03-24T14:05:58.056366174Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 33.1.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 4760008304aa2487a99674201f2242849e21217cb6ff7c3d80d222e27a5af9ec
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-2.2.1.tgz
version: 2.2.1
- apiVersion: v1
created: "2022-03-16T17:15:29.539656137Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 33.1.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: de2640c91f59c8c405e79b0b30a80ce2fb6b494f5741f226788ee51a31be67b8
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-2.2.0.tgz
version: 2.2.0
- apiVersion: v1
created: "2022-02-28T16:43:22.224990813Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 32.4.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 23a6dac9b8c5081db2c8fb7154233d5f63397357d4f887161eefeda0b31d9073
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-2.1.3.tgz
version: 2.1.3
- apiVersion: v1
created: "2022-02-24T14:06:45.62626676Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 32.3.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 6226511cd5e9001e97f650b64fb3e34e14f1ec93f04ad668e17915ef724a16b7
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-2.1.2.tgz
version: 2.1.2
- apiVersion: v1
created: "2022-02-24T12:49:29.827452121Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 32.2.1
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: c875c252f56b67fcc2f2132ed67b3ff7c678c6af0f9198dcbd983343d75eb4d0
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-2.1.1.tgz
version: 2.1.1
- apiVersion: v1
created: "2022-02-24T09:06:20.063282068Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 32.2.1
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 08070cc11b09172998864caceb9392a99c5182a2fb450fc025bd565d35f97645
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-2.1.0.tgz
version: 2.1.0
- apiVersion: v1
created: "2022-01-14T10:34:11.275931715Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 21.0.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 4d84efa41ee025bc3490dfe3f14d58ca1f7412dd8287892abd475665d9cea11f
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-2.0.0.tgz
version: 2.0.0
- apiVersion: v1
created: "2021-09-21T08:37:15.19576924Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 18.0.12
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: dd2c2dc4e959959a6a10bd37843882aede60d2ba877cdb38041fc9c4b78c2850
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.16.0.tgz
version: 1.16.0
- apiVersion: v1
created: "2021-09-17T07:51:16.385735175Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 17.1.3
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 7391c3e64067bfeaeebd01fbdd24aecf4c2593dad173ffc69ae3e2081f81b4b4
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.15.4.tgz
version: 1.15.4
- apiVersion: v1
created: "2021-09-16T13:11:52.160665009Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 17.1.3
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 4b233120e8b3836c853f1695347505415f0b6b6daee5647e7ece90b8eab6ccca
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.15.3.tgz
version: 1.15.3
- apiVersion: v1
created: "2021-08-09T08:16:36.699272454Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 17.1.3
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 76c6d8602ff1bf68fe03039ab8daf29f539bd98eb68fa906bba641c4b572c9a0
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.15.2.tgz
version: 1.15.2
- apiVersion: v1
created: "2021-08-06T09:08:48.517602889Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 17.1.1
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 7c83e820def90f64204b512ce677cb5794616414eb3fbb16fe7cd3360aa5ee86
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.15.1.tgz
version: 1.15.1
- apiVersion: v1
created: "2021-08-05T14:46:46.229853081Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 17.1.1
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 7134eacf893244fff945df257310e37302716ea78aa50e5431ca92d49171c478
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.15.0.tgz
version: 1.15.0
- apiVersion: v1
created: "2021-07-28T10:06:31.539062999Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 15.4.6
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: d23b3c1e808dce4f83c6e4ea2062593f53912306b7983ad043fb4111e0903935
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.9.tgz
version: 1.14.9
- apiVersion: v1
created: "2021-07-01T12:33:24.867781461Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 15.4.6
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 18f2443e25eec6683b2acd5ca1fdcd86202fb0072d42d825538c5e9a4522b3cf
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.8.tgz
version: 1.14.8
- apiVersion: v1
created: "2021-06-14T13:49:38.46394634Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 15.4.6
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: cdf654f14fd074abd063ea641fa564ac0ced7e33b71216b42f787a788707a4bd
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.7.tgz
version: 1.14.7
- apiVersion: v1
created: "2021-06-09T14:30:09.081848438Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 16.5.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 68a102c388cc190dfea33f8f04d94705856c3a2866ca85b7f13ff7e0f080dbfa
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.6.tgz
version: 1.14.6
- apiVersion: v1
created: "2021-06-09T13:51:51.159604148Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 15.4.6
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 1f1ba6aa19f760f3c306ce5abf862cbff33097ba40b6fe6fe62e96de5a082b33
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
- https://grafana.com/orgs/istio/dashboards
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.5.tgz
version: 1.14.5
- apiVersion: v1
created: "2021-05-28T07:54:27.578609075Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 15.4.6
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 9625ecd99c398b2c0455aa75007cde38123d35a4c5e4c819c2f704bda7e3e39a
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.4.tgz
version: 1.14.4
- apiVersion: v1
created: "2021-05-21T12:04:09.080782224Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 15.4.6
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 0f5ac8958d06f169c3365b71052d1b01ff629610e06168f137146ce72dcae67f
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.3.tgz
version: 1.14.3
- apiVersion: v1
created: "2021-05-18T07:08:02.224340044Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 15.4.6
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: ada3016270d98da7ca794160c8ccca0de162f3ddaf01052ff6c168190a0b9641
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.2.tgz
version: 1.14.2
- apiVersion: v1
created: "2021-05-17T06:59:53.656566014Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 15.4.6
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 179ca7e323038946e6d57f19c9b6b6bec9268002c7c047dc69376a323925a8de
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.1.tgz
version: 1.14.1
- apiVersion: v1
created: "2021-05-12T09:53:03.403818919Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 15.4.5
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: c2ea3db7afb8ef48db73d9699745b1963dccda6f508fd0e86fcea0d4a5cde099
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.14.0.tgz
version: 1.14.0
- apiVersion: v1
created: "2021-05-11T13:19:48.352377106Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 14.3.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 5acd356c8612ac800ac551623cc15162a81a08d8a627e51624dc8096c3dec0c3
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.13.2.tgz
version: 1.13.2
- apiVersion: v1
created: "2021-05-11T10:35:55.660999062Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 14.3.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 78b283d2a0096b09d79d44d2447969c73f8ddc52e3236452da3ef98a4c53a918
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.13.1.tgz
version: 1.13.1
- apiVersion: v1
created: "2021-05-11T08:07:46.466287046Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 14.3.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 88c3f9208407c4fcae53c4aaacedc8f945d9bdc4c46c5ba5be83eb48bcb88402
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring
- prometheus
- opsgenie
maintainers:
- email: hello@skyscrapers.eu
name: skyscrapers
name: cluster-monitoring
sources:
- https://github.com/coreos/prometheus-operator
- https://github.com/helm/charts/tree/master/stable/prometheus-operator
- https://github.com/skyscrapers/charts
urls:
- https://skyscrapers.github.io/charts/cluster-monitoring-1.13.0.tgz
version: 1.13.0
- apiVersion: v1
created: "2021-04-27T12:53:23.375478724Z"
dependencies:
- name: kube-prometheus-stack
repository: https://prometheus-community.github.io/helm-charts
version: 14.3.0
description: Cluster-wide monitoring setup using Prometheus-operator and Grafana.
digest: 0a5983430e2d81ea98e1edd7b8452f151e6f3e7239a1c6376b6198096f0599e2
home: https://github.com/coreos/prometheus-operator/
keywords:
- grafana
- prometheus-operator
- monitoring