Skip to content

Commit 47cde88

Browse files
authored
chore: bump operator version (#173)
1 parent b5c7f0f commit 47cde88

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

charts/greptimedb-cluster/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: greptimedb-cluster
33
description: A Helm chart for deploying GreptimeDB cluster in Kubernetes.
44
type: application
5-
version: 0.2.18
5+
version: 0.2.19
66
appVersion: 0.9.4
77
home: https://github.com/GreptimeTeam/greptimedb
88
sources:

charts/greptimedb-cluster/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A Helm chart for deploying GreptimeDB cluster in Kubernetes.
44

5-
![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)
5+
![Version: 0.2.19](https://img.shields.io/badge/Version-0.2.19-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)
66

77
## Source Code
88

@@ -181,7 +181,7 @@ helm uninstall mycluster -n default
181181
| image.tag | string | `"v0.9.4"` | The image tag |
182182
| initializer.registry | string | `"docker.io"` | Initializer image registry |
183183
| initializer.repository | string | `"greptime/greptimedb-initializer"` | Initializer image repository |
184-
| initializer.tag | string | `"v0.1.1"` | Initializer image tag |
184+
| initializer.tag | string | `"v0.1.2"` | Initializer image tag |
185185
| logging | object | `{"format":"text","level":"info","logsDir":"/data/greptimedb/logs","onlyLogToStdout":false,"persistentWithData":false}` | Global logging configuration |
186186
| logging.format | string | `"text"` | The log format for greptimedb, only support "json" and "text" |
187187
| logging.level | string | `"info"` | The log level for greptimedb, only support "debug", "info", "warn", "debug" |
@@ -214,15 +214,15 @@ helm uninstall mycluster -n default
214214
| meta.podTemplate.volumes | list | `[]` | The pod volumes |
215215
| meta.replicas | int | `1` | Meta replicas |
216216
| meta.storeKeyPrefix | string | `""` | Meta will store data with this key prefix |
217-
| 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 |
217+
| monitoring | object | `{"enabled":false,"logsCollection":{"pipeline":{"data":""}},"standalone":{},"vector":{"registry":"docker.io","repository":"timberio/vector","resources":{"limits":{"cpu":"50m","memory":"64Mi"},"requests":{"cpu":"50m","memory":"64Mi"}},"tag":"nightly-alpine"}}` | The monitoring bootstrap configuration |
218218
| monitoring.enabled | bool | `false` | Enable monitoring |
219219
| monitoring.logsCollection | object | `{"pipeline":{"data":""}}` | Configure the logs collection |
220220
| monitoring.logsCollection.pipeline | object | `{"data":""}` | The greptimedb pipeline for logs collection |
221221
| monitoring.standalone | object | `{}` | Configure the standalone instance for storing monitoring data |
222-
| monitoring.vector | object | `{"registry":"docker.io","repository":"timberio/vector","resource":{"limits":{"cpu":"50m","memory":"64Mi"},"requests":{"cpu":"50m","memory":"64Mi"}},"tag":"nightly-alpine"}` | Configure vector for logs and metrics collection. |
222+
| monitoring.vector | object | `{"registry":"docker.io","repository":"timberio/vector","resources":{"limits":{"cpu":"50m","memory":"64Mi"},"requests":{"cpu":"50m","memory":"64Mi"}},"tag":"nightly-alpine"}` | Configure vector for logs and metrics collection. |
223223
| monitoring.vector.registry | string | `"docker.io"` | vector image registry |
224224
| monitoring.vector.repository | string | `"timberio/vector"` | vector image repository |
225-
| monitoring.vector.resource | object | `{"limits":{"cpu":"50m","memory":"64Mi"},"requests":{"cpu":"50m","memory":"64Mi"}}` | vector resource |
225+
| monitoring.vector.resources | object | `{"limits":{"cpu":"50m","memory":"64Mi"},"requests":{"cpu":"50m","memory":"64Mi"}}` | vector resource |
226226
| monitoring.vector.tag | string | `"nightly-alpine"` | vector image tag |
227227
| mysqlServicePort | int | `4002` | GreptimeDB mysql service port |
228228
| objectStorage | object | `{"gcs":{},"oss":{},"s3":{}}` | Configure to object storage |

charts/greptimedb-cluster/templates/cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ spec:
449449
vector:
450450
image: '{{ .Values.monitoring.vector.registry }}/{{ .Values.monitoring.vector.repository }}:{{ .Values.monitoring.vector.tag }}'
451451
{{- if .Values.monitoring.vector.resource }}
452-
resource: {{- toYaml .Values.monitoring.vector.resource | nindent 8 }}
452+
resources: {{- toYaml .Values.monitoring.vector.resource | nindent 8 }}
453453
{{- end }}
454454
{{- end }}
455455
{{- end }}

charts/greptimedb-cluster/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ initializer:
1414
# -- Initializer image repository
1515
repository: greptime/greptimedb-initializer
1616
# -- Initializer image tag
17-
tag: v0.1.1
17+
tag: v0.1.2
1818

1919
base:
2020
# -- The pod template for base
@@ -627,7 +627,7 @@ monitoring:
627627
tag: nightly-alpine
628628

629629
# -- vector resource
630-
resource:
630+
resources:
631631
requests:
632632
cpu: "50m"
633633
memory: "64Mi"

charts/greptimedb-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
kubeVersion: ">=1.18.0-0"
33
description: The greptimedb-operator Helm chart for Kubernetes.
44
name: greptimedb-operator
5-
appVersion: 0.1.1
6-
version: 0.2.6
5+
appVersion: 0.1.2
6+
version: 0.2.7
77
type: application
88
home: https://github.com/GreptimeTeam/greptimedb-operator
99
sources:

charts/greptimedb-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The greptimedb-operator Helm chart for Kubernetes.
44

5-
![Version: 0.2.6](https://img.shields.io/badge/Version-0.2.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.1](https://img.shields.io/badge/AppVersion-0.1.1-informational?style=flat-square)
5+
![Version: 0.2.7](https://img.shields.io/badge/Version-0.2.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.2](https://img.shields.io/badge/AppVersion-0.1.2-informational?style=flat-square)
66

77
## Source Code
88

charts/greptimedb-operator/templates/crds/crd-greptimedbcluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17116,7 +17116,7 @@ spec:
1711617116
properties:
1711717117
image:
1711817118
type: string
17119-
resource:
17119+
resources:
1712017120
properties:
1712117121
claims:
1712217122
items:

0 commit comments

Comments
 (0)