File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11apiVersion : v2
22name : coredns
3- version : 1.45.2
3+ version : 1.45.3
44appVersion : 1.13.1
55home : https://coredns.io
66icon : https://coredns.io/images/CoreDNS_Colour_Horizontal.png
@@ -20,4 +20,4 @@ type: application
2020annotations :
2121 artifacthub.io/changes : |
2222 - kind: added
23- description: Add configurable dnsPolicy for deployment
23+ description: Support for relabling in ServiceMonitor
Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ The command removes all the Kubernetes components associated with the chart and
127127| ` prometheus.monitor.namespace ` | Selector to select which namespaces the Endpoints objects are discovered from. | ` "" ` |
128128| ` prometheus.monitor.interval ` | Scrape interval for polling the metrics endpoint. (E.g. "30s") | ` "" ` |
129129| ` prometheus.monitor.selector ` | Service selector | ` {} ` |
130+ | ` prometheus.monitor.relabelings ` | Relabelings to apply to samples before ingestion | ` [] ` |
130131| ` service.clusterIP ` | IP address to assign to service | ` "" ` |
131132| ` service.clusterIPs ` | IP addresses to assign to service | ` [] ` |
132133| ` service.loadBalancerIP ` | IP address to assign to load balancer (if supported) | ` "" ` |
Original file line number Diff line number Diff line change 3737 {{- if .Values.prometheus.monitor.interval }}
3838 interval : {{ .Values.prometheus.monitor.interval }}
3939 {{- end }}
40+ {{- with .Values.prometheus.monitor.relabelings }}
41+ relabelings :
42+ {{- toYaml . | nindent 8 }}
43+ {{- end }}
4044{{- end }}
Original file line number Diff line number Diff line change @@ -51,6 +51,9 @@ prometheus:
5151 namespace : " "
5252 interval : " "
5353 selector : {}
54+ # relabelings to apply to samples before ingestion
55+ # ref: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config
56+ relabelings : []
5457
5558service :
5659# clusterIP: ""
You can’t perform that action at this time.
0 commit comments