-
Notifications
You must be signed in to change notification settings - Fork 567
Expand file tree
/
Copy pathpodmonitor.yaml
More file actions
32 lines (32 loc) · 867 Bytes
/
podmonitor.yaml
File metadata and controls
32 lines (32 loc) · 867 Bytes
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
{{ $podMonitorEnabled := include "podMonitorEnabled" . }}
{{- if eq "true" $podMonitorEnabled -}}
---
apiVersion: monitoring.coreos.com/v1
kind: PodMonitor
metadata:
{{- if .Values.podmonitor.name }}
name: {{ .Values.podmonitor.name }}
{{- else }}
name: {{ template ".Chart.Name .fullname" . }}-pm
{{- end }}
spec:
jobLabel: {{ .Values.podmonitor.jobLabel }}
namespaceSelector:
matchNames:
- devtron-demo
{{- if .Values.podmonitor.podMetricsEndpoints }}
podMetricsEndpoints:
{{- toYaml .Values.podmonitor.podMetricsEndpoints | nindent 4}}
{{- end }}
podTargetLabels:
- appId
- envId
- devtron_app_hash
selector:
matchLabels:
{{- if .Values.podmonitor.matchLabels }}
{{- toYaml .Values.pod.matchLabels | nindent 6 }}
{{- else }}
app: {{ template ".Chart.Name .name" $ }}
{{- end }}
{{- end }}