2023-06-28 17:18:43 +00:00
|
|
|
{{- /*
|
|
|
|
Copyright VMware, Inc.
|
|
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
|
|
*/}}
|
|
|
|
|
2022-11-10 21:45:34 +00:00
|
|
|
{{- if and .Values.metrics.enabled .Values.metrics.podMonitor.enabled }}
|
|
|
|
apiVersion: monitoring.coreos.com/v1
|
|
|
|
kind: PodMonitor
|
|
|
|
metadata:
|
|
|
|
name: {{ include "common.names.fullname" . }}
|
|
|
|
{{- if .Values.metrics.podMonitor.namespace }}
|
|
|
|
namespace: {{ .Values.metrics.podMonitor.namespace }}
|
|
|
|
{{- else }}
|
|
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
|
|
{{- end }}
|
|
|
|
labels:
|
|
|
|
{{- include "common.labels.standard" . | nindent 4 }}
|
|
|
|
app.kubernetes.io/component: metrics
|
|
|
|
{{- if .Values.metrics.podMonitor.additionalLabels }}
|
|
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.metrics.podMonitor.additionalLabels "context" $) | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.commonLabels }}
|
|
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.commonAnnotations }}
|
|
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
spec:
|
|
|
|
podMetricsEndpoints:
|
|
|
|
- port: http
|
|
|
|
path: /metrics/
|
|
|
|
{{- if .Values.metrics.podMonitor.interval }}
|
|
|
|
interval: {{ .Values.metrics.podMonitor.interval }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.metrics.podMonitor.scrapeTimeout }}
|
|
|
|
scrapeTimeout: {{ .Values.metrics.podMonitor.scrapeTimeout }}
|
|
|
|
{{- end }}
|
|
|
|
{{- range .Values.metrics.podMonitor.extraMetricsEndpoints }}
|
|
|
|
- port: {{ .port }}
|
|
|
|
path: {{ .path }}
|
|
|
|
{{- if $.Values.metrics.podMonitor.interval }}
|
|
|
|
interval: {{ $.Values.metrics.podMonitor.interval }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if $.Values.metrics.podMonitor.scrapeTimeout }}
|
|
|
|
scrapeTimeout: {{ $.Values.metrics.podMonitor.scrapeTimeout }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
namespaceSelector:
|
|
|
|
matchNames:
|
|
|
|
- {{ include "common.names.namespace" . | quote }}
|
|
|
|
selector:
|
|
|
|
matchLabels: {{- include "common.labels.matchLabels" . | nindent 6 }}
|
|
|
|
{{- end }}
|