feat: support serviceMonitor
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
986356499f
commit
2f70402c3a
26
templates/serviceMonitor.yaml
Normal file
26
templates/serviceMonitor.yaml
Normal file
@ -0,0 +1,26 @@
|
||||
{{- if .Values.serviceMonitor.enabled }}
|
||||
apiVersion: monitoring.coreos.com/v1
|
||||
kind: ServiceMonitor
|
||||
metadata:
|
||||
{{- with .Values.serviceMonitor.annotations }}
|
||||
annotations:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
labels:
|
||||
{{- include "prometheus-fail2ban-exporter.labels" . | nindent 4 }}
|
||||
name: {{ include "prometheus-fail2ban-exporter.fullname" . }}
|
||||
spec:
|
||||
endpoints:
|
||||
- honorLabels: {{ .Values.serviceMonitor.honorLabels }}
|
||||
interval: {{ .Values.serviceMonitor.interval }}
|
||||
path: {{ .Values.serviceMonitor.path }}
|
||||
scrapeTimeout: {{ .Values.serviceMonitor.scrapeTimeout }}
|
||||
targetPort: {{ .Values.service.port }}
|
||||
jobLabel: {{ include "prometheus-fail2ban-exporter.fullname" . }}
|
||||
namespaceSelector:
|
||||
matchNames:
|
||||
- {{ .Release.Namespace }}
|
||||
selector:
|
||||
matchLabels:
|
||||
{{- include "prometheus-fail2ban-exporter.labels" . | nindent 6 }}
|
||||
{{- end }}
|
@ -95,6 +95,15 @@ service:
|
||||
type: ClusterIP
|
||||
port: 9191
|
||||
|
||||
serviceMonitor:
|
||||
enabled: false
|
||||
annotations: {}
|
||||
honorLabels: false
|
||||
interval: 60s
|
||||
labels: {}
|
||||
path: /metrics
|
||||
scrapeTimeout: 30s
|
||||
|
||||
tolerations: []
|
||||
|
||||
volumeMounts:
|
||||
|
Loading…
Reference in New Issue
Block a user