
By removing this, we reduce unecessary config options and moving parts. Signed-off-by: Naseem <naseem@transit.app>
33 lines
1.3 KiB
YAML
33 lines
1.3 KiB
YAML
{{- if and .Values.controller.metrics.enabled .Values.controller.metrics.serviceMonitor.enabled -}}
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: ServiceMonitor
|
|
metadata:
|
|
name: {{ include "ingress-nginx.controller.fullname" . }}
|
|
{{- if .Values.controller.metrics.serviceMonitor.namespace }}
|
|
namespace: {{ .Values.controller.metrics.serviceMonitor.namespace }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "ingress-nginx.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: controller
|
|
{{- if .Values.controller.metrics.serviceMonitor.additionalLabels }}
|
|
{{- toYaml .Values.controller.metrics.serviceMonitor.additionalLabels | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
endpoints:
|
|
- port: metrics
|
|
interval: {{ .Values.controller.metrics.serviceMonitor.scrapeInterval }}
|
|
{{- if .Values.controller.metrics.serviceMonitor.honorLabels }}
|
|
honorLabels: true
|
|
{{- end }}
|
|
{{- if .Values.controller.metrics.serviceMonitor.namespaceSelector }}
|
|
namespaceSelector: {{ toYaml .Values.controller.metrics.serviceMonitor.namespaceSelector | nindent 4 }}
|
|
{{ else }}
|
|
namespaceSelector:
|
|
matchNames:
|
|
- {{ .Release.Namespace }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "ingress-nginx.selectorLabels" . | nindent 6 }}
|
|
app.kubernetes.io/component: controller
|
|
{{- end }}
|