From b5c7f0f42ff184c6358bc2f5afc73a51306db237 Mon Sep 17 00:00:00 2001 From: zyy17 Date: Fri, 18 Oct 2024 11:17:34 +0800 Subject: [PATCH] chore: disable monitoring by default (#172) --- charts/greptimedb-cluster/Chart.yaml | 2 +- charts/greptimedb-cluster/README.md | 6 +++--- charts/greptimedb-cluster/values.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/greptimedb-cluster/Chart.yaml b/charts/greptimedb-cluster/Chart.yaml index 819c114..1638534 100644 --- a/charts/greptimedb-cluster/Chart.yaml +++ b/charts/greptimedb-cluster/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: greptimedb-cluster description: A Helm chart for deploying GreptimeDB cluster in Kubernetes. type: application -version: 0.2.17 +version: 0.2.18 appVersion: 0.9.4 home: https://github.com/GreptimeTeam/greptimedb sources: diff --git a/charts/greptimedb-cluster/README.md b/charts/greptimedb-cluster/README.md index 0a1c088..f9bc519 100644 --- a/charts/greptimedb-cluster/README.md +++ b/charts/greptimedb-cluster/README.md @@ -2,7 +2,7 @@ A Helm chart for deploying GreptimeDB cluster in Kubernetes. -![Version: 0.2.17](https://img.shields.io/badge/Version-0.2.17-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.4](https://img.shields.io/badge/AppVersion-0.9.4-informational?style=flat-square) +![Version: 0.2.18](https://img.shields.io/badge/Version-0.2.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.4](https://img.shields.io/badge/AppVersion-0.9.4-informational?style=flat-square) ## Source Code @@ -214,8 +214,8 @@ helm uninstall mycluster -n default | meta.podTemplate.volumes | list | `[]` | The pod volumes | | meta.replicas | int | `1` | Meta replicas | | meta.storeKeyPrefix | string | `""` | Meta will store data with this key prefix | -| monitoring | object | `{"enabled":true,"logsCollection":{"pipeline":{"data":""}},"standalone":{},"vector":{"registry":"docker.io","repository":"timberio/vector","resource":{"limits":{"cpu":"50m","memory":"64Mi"},"requests":{"cpu":"50m","memory":"64Mi"}},"tag":"nightly-alpine"}}` | The monitoring bootstrap configuration | -| monitoring.enabled | bool | `true` | Enable monitoring | +| monitoring | object | `{"enabled":false,"logsCollection":{"pipeline":{"data":""}},"standalone":{},"vector":{"registry":"docker.io","repository":"timberio/vector","resource":{"limits":{"cpu":"50m","memory":"64Mi"},"requests":{"cpu":"50m","memory":"64Mi"}},"tag":"nightly-alpine"}}` | The monitoring bootstrap configuration | +| monitoring.enabled | bool | `false` | Enable monitoring | | monitoring.logsCollection | object | `{"pipeline":{"data":""}}` | Configure the logs collection | | monitoring.logsCollection.pipeline | object | `{"data":""}` | The greptimedb pipeline for logs collection | | monitoring.standalone | object | `{}` | Configure the standalone instance for storing monitoring data | diff --git a/charts/greptimedb-cluster/values.yaml b/charts/greptimedb-cluster/values.yaml index b462d48..52dd49e 100644 --- a/charts/greptimedb-cluster/values.yaml +++ b/charts/greptimedb-cluster/values.yaml @@ -564,7 +564,7 @@ debugPod: # -- The monitoring bootstrap configuration monitoring: # -- Enable monitoring - enabled: true + enabled: false # -- Configure the standalone instance for storing monitoring data standalone: {}