Skip to content

Commit

Permalink
chore: update greptimedb version v0.7.0 (#116)
Browse files Browse the repository at this point in the history
* chore: update greptimedb version v0.7.0

* chore: update docs

* fix: e2e create table

* Update .github/scripts/deploy-greptimedb-cluster.sh

Co-authored-by: dennis zhuang <[email protected]>

* Update .github/scripts/deploy-greptimedb-standalone.sh

Co-authored-by: dennis zhuang <[email protected]>

---------

Co-authored-by: dennis zhuang <[email protected]>
  • Loading branch information
daviderli614 and killme2008 authored Mar 5, 2024
1 parent ca5fbe8 commit 5caa5ad
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions .github/scripts/deploy-greptimedb-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ CreateTableSQL="CREATE TABLE %s (
TIME INDEX (ts),
PRIMARY KEY(n)
)
PARTITION BY RANGE COLUMNS (n) (
PARTITION r0 VALUES LESS THAN (5),
PARTITION r1 VALUES LESS THAN (9),
PARTITION r2 VALUES LESS THAN (MAXVALUE)
PARTITION ON COLUMNS (n) (
n < 5,
n < 9,
n >= 9
)"

InsertDataSQL="INSERT INTO %s(n, row_id) VALUES (%d, %d)"
Expand Down
8 changes: 4 additions & 4 deletions .github/scripts/deploy-greptimedb-standalone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ CreateTableSQL="CREATE TABLE %s (
TIME INDEX (ts),
PRIMARY KEY(n)
)
PARTITION BY RANGE COLUMNS (n) (
PARTITION r0 VALUES LESS THAN (5),
PARTITION r1 VALUES LESS THAN (9),
PARTITION r2 VALUES LESS THAN (MAXVALUE)
PARTITION ON COLUMNS (n) (
n < 5,
n < 9,
n >= 9
)"

InsertDataSQL="INSERT INTO %s(n, row_id) VALUES (%d, %d)"
Expand Down
4 changes: 2 additions & 2 deletions charts/greptimedb-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: greptimedb-cluster
description: A Helm chart for deploying GreptimeDB cluster in Kubernetes
type: application
version: 0.1.19
appVersion: 0.6.0
version: 0.1.20
appVersion: 0.7.0
home: https://github.com/GreptimeTeam/greptimedb
sources:
- https://github.com/GreptimeTeam/greptimedb
Expand Down
4 changes: 2 additions & 2 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.1.19](https://img.shields.io/badge/Version-0.1.19-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.0](https://img.shields.io/badge/AppVersion-0.6.0-informational?style=flat-square)
![Version: 0.1.20](https://img.shields.io/badge/Version-0.1.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.0](https://img.shields.io/badge/AppVersion-0.7.0-informational?style=flat-square)

## Source Code

Expand Down Expand Up @@ -128,7 +128,7 @@ helm uninstall mycluster -n default
| image.pullSecrets | list | `[]` | The image pull secrets |
| image.registry | string | `"docker.io"` | The image registry |
| image.repository | string | `"greptime/greptimedb"` | The image repository |
| image.tag | string | `"v0.6.0"` | The image tag |
| image.tag | string | `"v0.7.0"` | The image tag |
| initializer.registry | string | `"docker.io"` | Initializer image registry |
| initializer.repository | string | `"greptime/greptimedb-initializer"` | Initializer image repository |
| initializer.tag | string | `"0.1.0-alpha.22"` | Initializer image tag |
Expand Down
2 changes: 1 addition & 1 deletion charts/greptimedb-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image:
# -- The image repository
repository: greptime/greptimedb
# -- The image tag
tag: "v0.6.0"
tag: "v0.7.0"
# -- The image pull secrets
pullSecrets: []

Expand Down
4 changes: 2 additions & 2 deletions charts/greptimedb-standalone/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: greptimedb-standalone
description: A Helm chart for deploying standalone greptimedb
type: application
version: 0.1.10
appVersion: 0.6.0
version: 0.1.11
appVersion: 0.7.0
home: https://github.com/GreptimeTeam/greptimedb
sources:
- https://github.com/GreptimeTeam/greptimedb
Expand Down
4 changes: 2 additions & 2 deletions charts/greptimedb-standalone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A Helm chart for deploying standalone greptimedb

![Version: 0.1.10](https://img.shields.io/badge/Version-0.1.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.0](https://img.shields.io/badge/AppVersion-0.6.0-informational?style=flat-square)
![Version: 0.1.11](https://img.shields.io/badge/Version-0.1.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.0](https://img.shields.io/badge/AppVersion-0.7.0-informational?style=flat-square)

## Source Code
- https://github.com/GreptimeTeam/greptimedb
Expand Down Expand Up @@ -64,7 +64,7 @@ helm uninstall greptimedb-standalone -n default
| image.pullSecrets | list | `[]` | The image pull secrets. |
| image.registry | string | `"docker.io"` | The image registry |
| image.repository | string | `"greptime/greptimedb"` | The image repository |
| image.tag | string | `"v0.6.0"` | The image tag |
| image.tag | string | `"v0.7.0"` | The image tag |
| monitoring.annotations | object | `{}` | PodMonitor annotations |
| monitoring.enabled | bool | `false` | Enable prometheus podmonitor |
| monitoring.interval | string | `"30s"` | PodMonitor scrape interval |
Expand Down
2 changes: 1 addition & 1 deletion charts/greptimedb-standalone/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image:
# -- The image repository
repository: greptime/greptimedb
# -- The image tag
tag: "v0.6.0"
tag: "v0.7.0"
# -- The image pull policy for the controller
pullPolicy: IfNotPresent
# -- The image pull secrets.
Expand Down

0 comments on commit 5caa5ad

Please sign in to comment.