forked from rancher/prometheus-federator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
executable file
·952 lines (952 loc) · 41.5 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
apiVersion: v1
entries:
prometheus-federator:
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.3.5
created: "2023-12-14T14:10:15.31117419-05:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 5196c34dbd9c135c50fbc2f0035da25cad19e43c9e9ff48b34fdf2df463ea3ef
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.4.1.tgz
version: 0.4.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.3.4
created: "2023-10-13T21:03:08.367928657-04:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 06348cc9ac6cfafcc488dee0619ff40effaa82c059f868d4073bc2b53876c6a4
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.4.0.tgz
version: 0.4.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.3.4
created: "2023-07-13T07:32:36.863134-07:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 839421b7c5b6bd385d23c77cd8382ef3e5f89b5b2d6f72c879a1d00205ec3777
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.3.4.tgz
version: 0.3.4
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.3.2
created: "2023-06-29T16:42:31.142915-07:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 44cbf957670a0ded349380eb560b2181c418f63cbbc349711449e08e9d22962b
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.3.3.tgz
version: 0.3.3
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 < 2.8.0-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.3.2
created: "2023-06-23T14:14:48.684592-07:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 6c60b1674aa476f447858dd5e87a6d111a992907936777ee6f825860353f2d9e
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.3.2.tgz
version: 0.3.2
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 < 2.8.0-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.3.1
created: "2023-05-24T21:59:43.2827-07:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: beca13955157507f2b9fe504bb0fdbff5b11060d20c4a8e0e56733b4f32c3a13
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.3.1.tgz
version: 0.3.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 < 2.8.0-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.3.0
created: "2023-05-24T21:18:24.965565-07:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 04f6943cce0d15fa57a12c5eba64ade11a0264318bcf0fc07ab16b1370d1e0d9
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.3.0.tgz
version: 0.3.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.6.100-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.2.1
created: "2023-03-06T14:54:22.216088-08:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 55476053a84dfbc52c0ed79de3825cfb8556b58b660fc409ad8ed6f276d038af
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.2.2.tgz
version: 0.2.2
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.6.100-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.2.1
created: "2023-02-22T10:38:47.758291-08:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: d14155609a545f6afd4e1a9bb2be69f5a087efe1d41b2f6d006f5fafae23987d
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.2.1.tgz
version: 0.2.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.6.100-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.2.0
created: "2023-01-31T09:46:27.516793-08:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 9e79719e86dd3765addc7e27da78410deb1611846cb0b2af3a625e9d6dfd26cd
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.2.0.tgz
version: 0.2.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.6.100-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.2.0-rc3
created: "2023-01-09T14:29:24.722297-08:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 3b1696ffec3dfb6a6210c7c09bea24d2774dac5b49b868bf51d156d765f9fa2c
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.2.0-rc3.tgz
version: 0.2.0-rc3
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.6.100-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.2.0-rc2
created: "2022-12-16T10:32:15.990479-08:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 74809e05fd758b800a9ef9a13d5a3ecaa3f07d79c150ca6cc8b83661004c422e
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.2.0-rc2.tgz
version: 0.2.0-rc2
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.6.100-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.2.0-rc1
created: "2022-12-01T10:28:07.173354-08:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: c9ac176ba2f36bfad98c796eb9b547bed7b90de8dca1d2a70a63f6060250ed0c
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.2.0-rc1.tgz
version: 0.2.0-rc1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.6.100-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.1.0
created: "2022-08-16T12:50:12.670836417-04:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: e87cef668c36186f7c6a35b86dd0246818005ab4195f9eede35f09539af0015f
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.1.1.tgz
version: 0.1.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.6.100-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.1.0
created: "2022-07-22T17:39:35.574909032Z"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 725b5e51d287a58ba03558b3b914353a9a7e87615f2de6b76aa47577f24a50bf
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.1.0.tgz
version: 0.1.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Prometheus Federator
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/os: linux,windows
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: helm.cattle.io.projecthelmchart/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.0-0 <=2.6.99-0'
catalog.cattle.io/release-name: prometheus-federator
apiVersion: v2
appVersion: 0.0.1
created: "2022-05-11T12:19:16.45146-07:00"
dependencies:
- condition: helmProjectOperator.enabled
name: helmProjectOperator
repository: file://./charts/helmProjectOperator
description: Prometheus Federator
digest: 47a8ad9e5b0cd6b773080db01559476be0379158b2399c63f35f73a56c4fe80c
icon: https://raw.githubusercontent.com/rancher/prometheus-federator/main/assets/logos/prometheus-federator.svg
name: prometheus-federator
urls:
- assets/prometheus-federator/prometheus-federator-0.0.1.tgz
version: 0.0.1
rancher-project-monitoring:
- annotations:
artifacthub.io/license: Apache-2.0
artifacthub.io/links: |
- name: Chart Source
url: https://github.com/prometheus-community/helm-charts
- name: Upstream Project
url: https://github.com/prometheus-operator/kube-prometheus
artifacthub.io/operator: "true"
catalog.cattle.io/auto-install: rancher-monitoring-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/deploys-on-os: windows
catalog.cattle.io/display-name: Monitoring
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.28.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1
catalog.cattle.io/rancher-version: '>= 2.8.0-0 < 2.9.0-0'
catalog.cattle.io/release-name: rancher-monitoring
catalog.cattle.io/requests-cpu: 4500m
catalog.cattle.io/requests-memory: 4000Mi
catalog.cattle.io/type: cluster-tool
catalog.cattle.io/ui-component: monitoring
catalog.cattle.io/upstream-version: 45.31.1
apiVersion: v2
appVersion: v0.65.1
created: "2023-12-14T14:10:38.406773465-05:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 0bccc2be45f316c40539404000fda98edea8defbe9b447f1cd1ec3e7e557ee50
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.4.1.tgz
version: 0.4.1
- annotations:
artifacthub.io/license: Apache-2.0
artifacthub.io/links: |
- name: Chart Source
url: https://github.com/prometheus-community/helm-charts
- name: Upstream Project
url: https://github.com/prometheus-operator/kube-prometheus
artifacthub.io/operator: "true"
catalog.cattle.io/auto-install: rancher-monitoring-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/deploys-on-os: windows
catalog.cattle.io/display-name: Monitoring
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.28.0-0'
catalog.cattle.io/namespace: cattle-monitoring-system
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: monitoring.coreos.com.prometheus/v1
catalog.cattle.io/rancher-version: '>= 2.8.0-0 < 2.9.0-0'
catalog.cattle.io/release-name: rancher-monitoring
catalog.cattle.io/requests-cpu: 4500m
catalog.cattle.io/requests-memory: 4000Mi
catalog.cattle.io/type: cluster-tool
catalog.cattle.io/ui-component: monitoring
catalog.cattle.io/upstream-version: 45.31.1
apiVersion: v2
appVersion: v0.65.1
created: "2023-10-13T15:48:47.386988658-04:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: b7c592f11470840308817690fcc21b872ef50838a44c48e2c032f81efd66e862
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.4.0.tgz
version: 0.4.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2023-07-13T07:32:37.620947-07:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: e2a084e88e9229f9bb138f5e05abb9daaef76f304f42a2f7afde93d71c3557cc
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.3.4.tgz
version: 0.3.4
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2023-06-29T16:42:31.871233-07:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: c7c6e845a71ec59a4409ea17e94f3680fe2ac8d053b177a0c56191e82a8b5691
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.3.3.tgz
version: 0.3.3
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.26.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.8.0-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2023-06-27T17:12:21.27557-07:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 1666b8773b2ed03f9b18249f7097e6f5792ae5c5fb5f6220e6db4469e48b42b0
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.3.2.tgz
version: 0.3.2
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.26.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.8.0-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2023-05-24T21:18:25.019667-07:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 4c3c45ed36f38d3302e9023984240384b6404194faac49ccf462e0bd09d6987f
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.3.1.tgz
version: 0.3.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.26.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.8.0-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2023-05-24T21:18:25.014272-07:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: de5faa33a81aa92afcf05f187a35d6a8d4a16235c7f85215c762f1a98b8b6deb
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.3.0.tgz
version: 0.3.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.26.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.8.0-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2023-05-24T21:18:25.008457-07:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 75e51f3ced73eb3e009b54d4ea93fa8f7bd09c678f6ed2a653a3822e880d0235
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.2.2.tgz
version: 0.2.2
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.26.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.8.0-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2023-02-22T10:30:39.163496-08:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: f953bd1e662abc8d11907b575efe8641c1007ef299d970800e886c3b96a456bf
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.2.1.tgz
version: 0.2.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.26.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.8.0-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2023-01-31T09:46:29.078872-08:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 913997ccbfbbb737d51b3fce7252d4901ed5e466d6ac01c24a936515b1791bfb
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.2.0.tgz
version: 0.2.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>=1.16.0-0 < 1.25.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.8.0-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2023-01-09T18:59:17.151834-08:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 2329aaa8e7c931c4524da229c682959900d47104006cc3db3d4ed8f22f2b5a13
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.2.0-rc3.tgz
version: 0.2.0-rc3
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>=1.16.0-0 < 1.25.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.8.0-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2022-12-16T10:32:18.039276-08:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 3cd7a59f64117bf3db47eb67b87dc7e72f11c49651546dda5236e0063b9ce91f
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.2.0-rc2.tgz
version: 0.2.0-rc2
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>=1.16.0-0 < 1.25.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.8.0-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.59.1
created: "2022-11-28T16:57:04.138794-08:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 0940daab68c8b327383c37a40feac8f4bcd2e54babb0ebc2d7533556c9ebb912
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
- email: amangeet.samra@suse.com
name: Geet
url: https://github.com/geethub97
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.2.0-rc1.tgz
version: 0.2.0-rc1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.5-0 <= 2.6.100-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.1.0
created: "2022-05-11T14:08:50.938803-07:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 9b27e39e9a7b8660d3adbcdc2a48e48b059e94b9292c2fe5b5002fbbca280a80
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.1.0.tgz
version: 0.1.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Project Monitoring
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>=1.16.0-0'
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.0-0 <=2.6.99-0'
catalog.cattle.io/release-name: rancher-project-monitoring
apiVersion: v2
appVersion: 0.0.1
created: "2022-05-09T21:37:08.524929-07:00"
dependencies:
- condition: grafana.enabled
name: grafana
repository: file://./charts/grafana
description: Collects several related Helm charts, Grafana dashboards, and Prometheus
rules combined with documentation and scripts to provide easy to operate end-to-end
Kubernetes cluster monitoring with Prometheus. Depends on the existence of a
Cluster Prometheus deployed via Prometheus Operator
digest: 4a88f3c805e6b5b50e764f98029de7d95c324de8236bc91c905339602bfd7b0b
home: https://github.com/prometheus-operator/kube-prometheus
icon: https://raw.githubusercontent.com/prometheus/prometheus.github.io/master/assets/prometheus_logo-cb55bb5c346.png
keywords:
- prometheus
- monitoring
kubeVersion: '>=1.16.0-0'
maintainers:
- email: arvind.iyengar@suse.com
name: Arvind
name: rancher-project-monitoring
type: application
urls:
- assets/rancher-project-monitoring/rancher-project-monitoring-0.0.1.tgz
version: 0.0.1
generated: "2022-04-18T09:31:51.970932-07:00"