{{- 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 }} selector: matchLabels: {{- if .Values.prometheus.monitor.selectorOverride -}} {{ toYaml .Values.prometheus.monitor.selectorOverride | 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 }}