summaryrefslogtreecommitdiff
path: root/data.d/k3s-master/manifests.d/tyilnet/monitoring/prometheus/helm-chart.yaml
blob: 39d1aa6a889a03b0a510074b777bb7b856b1acf5 (plain)
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
---
apiVersion: helm.cattle.io/v1
kind: HelmChart
metadata:
  name: prometheus
  namespace: monitoring
spec:
  repo: https://prometheus-community.github.io/helm-charts
  chart: kube-prometheus-stack
  valuesContent: |-
    alertmanager:
      enabled: false
    grafana:
      enabled: false
    prometheus:
      enabled: true
      prometheusSpec:
        retention: 10d
        serviceMonitorSelectorNilUsesHelmValues: false
        storageSpec:
          volumeClaimTemplate:
            spec:
              storageClassName: longhorn
              resources:
                requests:
                  storage: 50Gi
              accessModes:
              - ReadWriteOnce
...