Skip to content

Commit

Permalink
fix: incorrect field remoteWAL -> remoteWal (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
zyy17 authored Jul 30, 2024
1 parent 3082433 commit bb8ee9c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/greptimedb-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: greptimedb-cluster
description: A Helm chart for deploying GreptimeDB cluster in Kubernetes.
type: application
version: 0.2.2
version: 0.2.3
appVersion: 0.9.0
home: https://github.com/GreptimeTeam/greptimedb
sources:
Expand Down
10 changes: 5 additions & 5 deletions charts/greptimedb-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A Helm chart for deploying GreptimeDB cluster in Kubernetes.

![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.0](https://img.shields.io/badge/AppVersion-0.9.0-informational?style=flat-square)
![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.9.0](https://img.shields.io/badge/AppVersion-0.9.0-informational?style=flat-square)

## Source Code

Expand Down Expand Up @@ -198,7 +198,7 @@ helm uninstall mycluster -n default
| prometheusMonitor.enabled | bool | `false` | Create PodMonitor resource for scraping metrics using PrometheusOperator |
| prometheusMonitor.interval | string | `"30s"` | Interval at which metrics should be scraped |
| prometheusMonitor.labels | object | `{"release":"prometheus"}` | Add labels to the PodMonitor |
| remoteWAL | object | `{"enabled":false,"kafka":{"brokerEndpoints":[]}}` | Configure to remote wal |
| remoteWAL.enabled | bool | `false` | Enable remote wal |
| remoteWAL.kafka | object | `{"brokerEndpoints":[]}` | The remote wal type, only support kafka now. |
| remoteWAL.kafka.brokerEndpoints | list | `[]` | The kafka broker endpoints |
| remoteWal | object | `{"enabled":false,"kafka":{"brokerEndpoints":[]}}` | Configure to remote wal |
| remoteWal.enabled | bool | `false` | Enable remote wal |
| remoteWal.kafka | object | `{"brokerEndpoints":[]}` | The remote wal type, only support kafka now. |
| remoteWal.kafka.brokerEndpoints | list | `[]` | The kafka broker endpoints |
8 changes: 4 additions & 4 deletions charts/greptimedb-cluster/templates/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,9 @@ spec:
{{- else }}
{}
{{- end }}
{{- if .Values.remoteWAL.enabled }}
remoteWAL:
{{- if .Values.remoteWAL.kafka }}
kafka: {{- toYaml .Values.remoteWAL.kafka | nindent 6 }}
{{- if .Values.remoteWal.enabled }}
remoteWal:
{{- if .Values.remoteWal.kafka }}
kafka: {{- toYaml .Values.remoteWal.kafka | nindent 6 }}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion charts/greptimedb-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ objectStorage:
# endpoint: "oss-cn-hangzhou.aliyuncs.com"

# -- Configure to remote wal
remoteWAL:
remoteWal:
# -- Enable remote wal
enabled: false
# -- The remote wal type, only support kafka now.
Expand Down

0 comments on commit bb8ee9c

Please sign in to comment.