mirror of https://git.rancher.io/charts
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
{{- if and .Values.prometheus.enabled .Values.prometheus.additionalPodMonitors }}
|
|
apiVersion: v1
|
|
kind: List
|
|
items:
|
|
{{- range .Values.prometheus.additionalPodMonitors }}
|
|
- apiVersion: monitoring.coreos.com/v1
|
|
kind: PodMonitor
|
|
metadata:
|
|
name: {{ .name }}
|
|
namespace: {{ template "kube-prometheus-stack.namespace" $ }}
|
|
labels:
|
|
app: {{ template "kube-prometheus-stack.name" $ }}-prometheus
|
|
{{ include "kube-prometheus-stack.labels" $ | indent 8 }}
|
|
{{- if .additionalLabels }}
|
|
{{ toYaml .additionalLabels | indent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
podMetricsEndpoints:
|
|
{{ toYaml .podMetricsEndpoints | indent 8 }}
|
|
{{- if .jobLabel }}
|
|
jobLabel: {{ .jobLabel }}
|
|
{{- end }}
|
|
{{- if .namespaceSelector }}
|
|
namespaceSelector:
|
|
{{ toYaml .namespaceSelector | indent 8 }}
|
|
{{- end }}
|
|
selector:
|
|
{{ toYaml .selector | indent 8 }}
|
|
{{- if .podTargetLabels }}
|
|
podTargetLabels:
|
|
{{ toYaml .podTargetLabels | indent 8 }}
|
|
{{- end }}
|
|
{{- if .sampleLimit }}
|
|
sampleLimit: {{ .sampleLimit }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|