Browse Source
ignore ServiceMonitor when monitoring is disabled
pull/2353/head
Janikio
3 years ago
No known key found for this signature in database
GPG Key ID: 12FB1516BA8637D0
3 changed files with
6 additions and
0 deletions
-
k8s/helm_charts2/templates/filer-servicemonitor.yaml
-
k8s/helm_charts2/templates/s3-servicemonitor.yaml
-
k8s/helm_charts2/templates/volume-servicemonitor.yaml
|
|
@ -1,4 +1,5 @@ |
|
|
|
{{- if .Values.filer.metricsPort }} |
|
|
|
{{- if .Values.global.monitoring.enabled }} |
|
|
|
apiVersion: monitoring.coreos.com/v1 |
|
|
|
kind: ServiceMonitor |
|
|
|
metadata: |
|
|
@ -15,4 +16,5 @@ spec: |
|
|
|
selector: |
|
|
|
app: {{ template "seaweedfs.name" . }} |
|
|
|
component: filer |
|
|
|
{{- end }} |
|
|
|
{{- end }} |
|
|
@ -1,4 +1,5 @@ |
|
|
|
{{- if .Values.s3.metricsPort }} |
|
|
|
{{- if .Values.global.monitoring.enabled }} |
|
|
|
apiVersion: monitoring.coreos.com/v1 |
|
|
|
kind: ServiceMonitor |
|
|
|
metadata: |
|
|
@ -15,4 +16,5 @@ spec: |
|
|
|
selector: |
|
|
|
app: {{ template "seaweedfs.name" . }} |
|
|
|
component: s3 |
|
|
|
{{- end }} |
|
|
|
{{- end }} |
|
|
@ -1,4 +1,5 @@ |
|
|
|
{{- if .Values.volume.metricsPort }} |
|
|
|
{{- if .Values.global.monitoring.enabled }} |
|
|
|
apiVersion: monitoring.coreos.com/v1 |
|
|
|
kind: ServiceMonitor |
|
|
|
metadata: |
|
|
@ -15,4 +16,5 @@ spec: |
|
|
|
selector: |
|
|
|
app: {{ template "seaweedfs.name" . }} |
|
|
|
component: volume |
|
|
|
{{- end }} |
|
|
|
{{- end }} |