* Revert "Remove deprecated mqtrigger with kind fission (#2875)"
This reverts commit f44174debc.
* Upgrade sarama version to v1.43.2
Signed-off-by: Md Soharab Ansari <soharab.ansari@infracloud.io>
---------
Signed-off-by: Md Soharab Ansari <soharab.ansari@infracloud.io>
24 lines
554 B
YAML
24 lines
554 B
YAML
{{- if .Values.podMonitor.enabled }}
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: PodMonitor
|
|
metadata:
|
|
name: mqt-fission-kafka-monitor
|
|
{{- if .Values.podMonitor.namespace }}
|
|
namespace: {{ .Values.podMonitor.namespace }}
|
|
{{- end }}
|
|
{{- with .Values.podMonitor.additionalPodMonitorLabels }}
|
|
labels:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
namespaceSelector:
|
|
matchNames:
|
|
- {{ .Release.Namespace }}
|
|
selector:
|
|
matchLabels:
|
|
svc: mqtrigger
|
|
podMetricsEndpoints:
|
|
- port: "metrics"
|
|
path: "/metrics"
|
|
{{- end -}}
|