mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.6 KiB
YAML
52 lines
1.6 KiB
YAML
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: kube-prometheus-stack
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
version: "45.x"
|
|
chart: kube-prometheus-stack
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: prometheus-community
|
|
interval: 60m
|
|
install:
|
|
crds: Create
|
|
upgrade:
|
|
crds: CreateReplace
|
|
# https://github.com/prometheus-community/helm-charts/blob/main/charts/kube-prometheus-stack/values.yaml
|
|
values:
|
|
alertmanager:
|
|
enabled: false
|
|
prometheus:
|
|
prometheusSpec:
|
|
retention: 24h
|
|
resources:
|
|
requests:
|
|
cpu: 200m
|
|
memory: 200Mi
|
|
podMonitorNamespaceSelector: {}
|
|
podMonitorSelector:
|
|
matchLabels:
|
|
app.kubernetes.io/component: monitoring
|
|
postRenderers:
|
|
- kustomize:
|
|
patches:
|
|
- target:
|
|
# Ignore these objects from Flux diff as they are mutated from chart hooks
|
|
kind: (ValidatingWebhookConfiguration|MutatingWebhookConfiguration)
|
|
name: kube-prometheus-stack-admission
|
|
patch: |
|
|
- op: add
|
|
path: /metadata/annotations/helm.toolkit.fluxcd.io~1driftDetection
|
|
value: disabled
|
|
- target:
|
|
# Ignore these objects from Flux diff as they are mutated at apply time but not at dry-run time
|
|
kind: PrometheusRule
|
|
patch: |
|
|
- op: add
|
|
path: /metadata/annotations/helm.toolkit.fluxcd.io~1driftDetection
|
|
value: disabled
|