blob: 3c407c5d334f21c3a9aff1730f73c383881f1cb1 [file] [log] [blame]
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +02001{{- /*
Mohammed Naser7d1623e2024-06-17 09:12:39 -04002Copyright Broadcom, Inc. All Rights Reserved.
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +02003SPDX-License-Identifier: APACHE-2.0
4*/}}
5
6{{- if and .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled }}
7apiVersion: monitoring.coreos.com/v1
8kind: ServiceMonitor
9metadata:
10 name: {{ template "common.names.fullname" . }}
11 namespace: {{ default (include "common.names.namespace" .) .Values.metrics.serviceMonitor.namespace }}
Mohammed Naser65cda132024-05-02 14:34:08 -040012 {{- $labels := include "common.tplvalues.merge" ( dict "values" ( list .Values.metrics.serviceMonitor.labels .Values.commonLabels ) "context" . ) }}
13 labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }}
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020014 app.kubernetes.io/component: keycloak
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020015 {{- if .Values.commonAnnotations }}
16 annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
17 {{- end }}
18spec:
19 {{- if .Values.metrics.serviceMonitor.jobLabel }}
20 jobLabel: {{ .Values.metrics.serviceMonitor.jobLabel }}
21 {{- end }}
22 endpoints:
23 {{- $defaultEndpoint := pick .Values.metrics.serviceMonitor "port" "interval" "scrapeTimeout" "relabelings" "metricRelabelings" "honorLabels" }}
24 {{- $endpoints := ternary (.Values.metrics.serviceMonitor.endpoints) (list (dict "path" .Values.metrics.serviceMonitor.path)) (empty .Values.metrics.serviceMonitor.path) }}
25 {{- range $endpoints }}
26 {{- $endpoint := merge . $defaultEndpoint }}
Mohammed Naser65cda132024-05-02 14:34:08 -040027 - port: {{ $endpoint.port | quote }}
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020028 path: {{ include "common.tplvalues.render" ( dict "value" $endpoint.path "context" $) }}
29 {{- if $endpoint.interval }}
30 interval: {{ $endpoint.interval }}
31 {{- end }}
32 {{- if $endpoint.scrapeTimeout }}
33 scrapeTimeout: {{ $endpoint.scrapeTimeout }}
34 {{- end }}
35 {{- if $endpoint.relabelings }}
36 relabelings: {{- include "common.tplvalues.render" ( dict "value" $endpoint.relabelings "context" $) | nindent 6 }}
37 {{- end }}
38 {{- if $endpoint.metricRelabelings }}
39 metricRelabelings: {{- include "common.tplvalues.render" ( dict "value" $endpoint.metricRelabelings "context" $) | nindent 6 }}
40 {{- end }}
41 {{- if $endpoint.honorLabels }}
42 honorLabels: {{ $endpoint.honorLabels }}
43 {{- end }}
44 {{- end }}
45 namespaceSelector:
46 matchNames:
47 - {{ include "common.names.namespace" . | quote }}
48 selector:
Mohammed Naser65cda132024-05-02 14:34:08 -040049 matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 6 }}
Oleksandr Kozachenkob0093492023-09-06 21:43:47 +020050 {{- if .Values.metrics.serviceMonitor.selector }}
51 {{- include "common.tplvalues.render" (dict "value" .Values.metrics.serviceMonitor.selector "context" $) | nindent 6 }}
52 {{- end }}
53 app.kubernetes.io/component: metrics
54{{- end }}