helm-charts/headscale/templates/servicemonitor.yaml

19 lines
556 B
YAML
Raw Normal View History

2023-07-21 20:57:08 +02:00
{{- if and .Values.prometheus.servicemonitor.enabled (.Capabilities.APIVersions.Has "monitoring.coreos.com/v1") }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: {{ include "headscale.fullname" . }}
labels:
{{- include "headscale.labels" . | nindent 4 }}
{{- with .Values.prometheus.servicemonitor.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
endpoints:
- port: metrics
path: /metrics
selector:
matchLabels:
{{- include "headscale.selectorLabels" . | nindent 6 }}
{{- end }}