1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {{- if .Values.prometheus.monitor.enabled }}
- apiVersion: monitoring.coreos.com/v1
- kind: ServiceMonitor
- metadata:
- name: {{ template "kube-state-metrics.fullname" . }}
- namespace: {{ template "kube-state-metrics.namespace" . }}
- labels:
- {{- include "kube-state-metrics.labels" . | indent 4 }}
- {{- with .Values.prometheus.monitor.additionalLabels }}
- {{- toYaml . | nindent 4 }}
- {{- end }}
- spec:
- jobLabel: {{ default "app.kubernetes.io/name" .Values.prometheus.monitor.jobLabel }}
- {{- with .Values.prometheus.monitor.targetLabels }}
- targetLabels:
- {{- toYaml . | trim | nindent 4 }}
- {{- end }}
- {{- with .Values.prometheus.monitor.podTargetLabels }}
- podTargetLabels:
- {{- toYaml . | trim | nindent 4 }}
- {{- end }}
- {{- include "servicemonitor.scrapeLimits" .Values.prometheus.monitor | indent 2 }}
- selector:
- matchLabels:
- {{- with .Values.prometheus.monitor.selectorOverride }}
- {{- toYaml . | nindent 6 }}
- {{- else }}
- {{- include "kube-state-metrics.selectorLabels" . | indent 6 }}
- {{- end }}
- endpoints:
- - port: http
- {{- if .Values.prometheus.monitor.interval }}
- interval: {{ .Values.prometheus.monitor.interval }}
- {{- end }}
- {{- if .Values.prometheus.monitor.scrapeTimeout }}
- scrapeTimeout: {{ .Values.prometheus.monitor.scrapeTimeout }}
- {{- end }}
- {{- if .Values.prometheus.monitor.proxyUrl }}
- proxyUrl: {{ .Values.prometheus.monitor.proxyUrl}}
- {{- end }}
- {{- if .Values.prometheus.monitor.honorLabels }}
- honorLabels: true
- {{- end }}
- {{- if .Values.prometheus.monitor.metricRelabelings }}
- metricRelabelings:
- {{- toYaml .Values.prometheus.monitor.metricRelabelings | nindent 8 }}
- {{- end }}
- {{- if .Values.prometheus.monitor.relabelings }}
- relabelings:
- {{- toYaml .Values.prometheus.monitor.relabelings | nindent 8 }}
- {{- end }}
- {{- if .Values.prometheus.monitor.scheme }}
- scheme: {{ .Values.prometheus.monitor.scheme }}
- {{- end }}
- {{- if .Values.prometheus.monitor.tlsConfig }}
- tlsConfig:
- {{- toYaml .Values.prometheus.monitor.tlsConfig | nindent 8 }}
- {{- end }}
- {{- if .Values.selfMonitor.enabled }}
- - port: metrics
- {{- if .Values.prometheus.monitor.interval }}
- interval: {{ .Values.prometheus.monitor.interval }}
- {{- end }}
- {{- if .Values.prometheus.monitor.scrapeTimeout }}
- scrapeTimeout: {{ .Values.prometheus.monitor.scrapeTimeout }}
- {{- end }}
- {{- if .Values.prometheus.monitor.proxyUrl }}
- proxyUrl: {{ .Values.prometheus.monitor.proxyUrl}}
- {{- end }}
- {{- if .Values.prometheus.monitor.honorLabels }}
- honorLabels: true
- {{- end }}
- {{- if .Values.prometheus.monitor.metricRelabelings }}
- metricRelabelings:
- {{- toYaml .Values.prometheus.monitor.metricRelabelings | nindent 8 }}
- {{- end }}
- {{- if .Values.prometheus.monitor.relabelings }}
- relabelings:
- {{- toYaml .Values.prometheus.monitor.relabelings | nindent 8 }}
- {{- end }}
- {{- if .Values.prometheus.monitor.scheme }}
- scheme: {{ .Values.prometheus.monitor.scheme }}
- {{- end }}
- {{- if .Values.prometheus.monitor.tlsConfig }}
- tlsConfig:
- {{- toYaml .Values.prometheus.monitor.tlsConfig | nindent 8 }}
- {{- end }}
- {{- end }}
- {{- end }}
|