fix: seed observability dependencies
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
{{- 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:
|
||||
{{- include "servicemonitor.scrapeLimits" . | nindent 6 }}
|
||||
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 }}
|
||||
{{- if .fallbackScrapeProtocol }}
|
||||
fallbackScrapeProtocol: {{ .fallbackScrapeProtocol }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
Reference in New Issue
Block a user