diff options
| author | Janikio <janikb@protonmail.com> | 2021-10-03 18:35:04 +0200 |
|---|---|---|
| committer | Janikio <janikb@protonmail.com> | 2021-10-03 18:35:04 +0200 |
| commit | ca04c59ac95951b17e6081e681fa35e3ca275038 (patch) | |
| tree | 621ee64a286b207465871ac76708d945f6a787b8 | |
| parent | 1d2dfe593c8d9dcb11704c2573f5295d001f5532 (diff) | |
| download | seaweedfs-ca04c59ac95951b17e6081e681fa35e3ca275038.tar.xz seaweedfs-ca04c59ac95951b17e6081e681fa35e3ca275038.zip | |
ignore ServiceMonitor when monitoring is disabled
| -rw-r--r-- | k8s/helm_charts2/templates/filer-servicemonitor.yaml | 2 | ||||
| -rw-r--r-- | k8s/helm_charts2/templates/s3-servicemonitor.yaml | 2 | ||||
| -rw-r--r-- | k8s/helm_charts2/templates/volume-servicemonitor.yaml | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/k8s/helm_charts2/templates/filer-servicemonitor.yaml b/k8s/helm_charts2/templates/filer-servicemonitor.yaml index f07f6ebef..ed45442dc 100644 --- a/k8s/helm_charts2/templates/filer-servicemonitor.yaml +++ b/k8s/helm_charts2/templates/filer-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 }}
\ No newline at end of file diff --git a/k8s/helm_charts2/templates/s3-servicemonitor.yaml b/k8s/helm_charts2/templates/s3-servicemonitor.yaml index 7f18f00f5..b549893c7 100644 --- a/k8s/helm_charts2/templates/s3-servicemonitor.yaml +++ b/k8s/helm_charts2/templates/s3-servicemonitor.yaml @@ -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 }}
\ No newline at end of file diff --git a/k8s/helm_charts2/templates/volume-servicemonitor.yaml b/k8s/helm_charts2/templates/volume-servicemonitor.yaml index 1b286e9b6..90d70e8de 100644 --- a/k8s/helm_charts2/templates/volume-servicemonitor.yaml +++ b/k8s/helm_charts2/templates/volume-servicemonitor.yaml @@ -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 }}
\ No newline at end of file |
