Oleksandr Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 1 | {{- /* |
Mohammed Naser | 7d1623e | 2024-06-17 09:12:39 -0400 | [diff] [blame] | 2 | Copyright Broadcom, Inc. All Rights Reserved. |
Oleksandr Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 3 | SPDX-License-Identifier: APACHE-2.0 |
| 4 | */}} |
| 5 | |
| 6 | {{- if and .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled }} |
| 7 | apiVersion: monitoring.coreos.com/v1 |
| 8 | kind: ServiceMonitor |
| 9 | metadata: |
| 10 | name: {{ template "common.names.fullname" . }} |
| 11 | namespace: {{ default (include "common.names.namespace" .) .Values.metrics.serviceMonitor.namespace }} |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 12 | {{- $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 Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 14 | app.kubernetes.io/component: keycloak |
Oleksandr Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 15 | {{- if .Values.commonAnnotations }} |
| 16 | annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} |
| 17 | {{- end }} |
| 18 | spec: |
| 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 Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 27 | - port: {{ $endpoint.port | quote }} |
Oleksandr Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 28 | 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 Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 49 | matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 6 }} |
Oleksandr Kozachenko | b009349 | 2023-09-06 21:43:47 +0200 | [diff] [blame] | 50 | {{- 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 }} |