-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add values explanation * refactor: move greptimedb to greptimedb-cluster chart * feat: add more parameter description * chore: change chart test dir * refactor: use helm-docs tool generates values
- Loading branch information
1 parent
7610d07
commit a0eefbd
Showing
16 changed files
with
343 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Helm chart for [GreptimeDB](https://github.com/GreptimeTeam/greptimedb) cluster. | ||
|
||
## How to install | ||
|
||
**Note**: Make sure you already install the [greptimedb-operator](../greptimedb-operator/README.md). | ||
|
||
```console | ||
# Add charts repo. | ||
helm repo add greptime https://greptimeteam.github.io/helm-charts/ | ||
helm repo update | ||
``` | ||
|
||
```console | ||
# Optional: Install etcd cluster. | ||
# You also can use your own etcd cluster. | ||
helm install etcd oci://registry-1.docker.io/bitnamicharts/etcd \ | ||
--set replicaCount=3 \ | ||
--set auth.rbac.create=false \ | ||
--set auth.rbac.token.enabled=false \ | ||
-n default | ||
``` | ||
|
||
```console | ||
# Install greptimedb in default namespace. | ||
helm install greptimedb-cluster greptime/greptimedb-cluster -n default | ||
``` | ||
|
||
## How to uninstall | ||
|
||
```console | ||
helm uninstall greptimedb-cluster -n default | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ kubeVersion: ">=1.18.0-0" | |
description: The greptimedb-operator Helm chart for Kubernetes | ||
name: greptimedb-operator | ||
appVersion: 0.1.0-alpha.17 | ||
version: 0.1.1-alpha.14 | ||
version: 0.1.1 | ||
type: application | ||
home: https://github.com/GreptimeTeam/greptimedb-operator | ||
sources: | ||
|
@@ -15,5 +15,7 @@ keywords: | |
maintainers: | ||
- name: daviderli614 | ||
email: [email protected] | ||
url: https://github.com/daviderli614 | ||
- name: zyy17 | ||
email: [email protected] | ||
url: https://github.com/zyy17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,25 @@ | ||
# Overview | ||
# greptimedb-operator | ||
|
||
Helm chart for GreptimeDB [operator](https://github.com/GreptimeTeam/greptimedb-operator). | ||
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0-alpha.17](https://img.shields.io/badge/AppVersion-0.1.0--alpha.17-informational?style=flat-square) | ||
|
||
The greptimedb-operator Helm chart for Kubernetes | ||
|
||
**Homepage:** <https://github.com/GreptimeTeam/greptimedb-operator> | ||
|
||
## Maintainers | ||
|
||
| Name | Email | Url | | ||
| ---- | ------ | --- | | ||
| daviderli614 | <[email protected]> | <https://github.com/daviderli614> | | ||
| zyy17 | <[email protected]> | <https://github.com/zyy17> | | ||
|
||
## Source Code | ||
|
||
* <https://github.com/GreptimeTeam/greptimedb-operator> | ||
|
||
## Requirements | ||
|
||
Kubernetes: `>=1.18.0-0` | ||
|
||
## How to install | ||
|
||
|
@@ -12,10 +31,10 @@ helm repo add greptime https://greptimeteam.github.io/helm-charts/ | |
helm repo update | ||
|
||
# Search charts repo. | ||
helm search repo greptime -l --devel | ||
helm search repo greptime -l --devel | ||
|
||
# Deploy greptimedb-operator in default namespace. | ||
helm install greptimedb-operator greptime/greptimedb-operator -n default --devel | ||
helm install greptimedb-operator greptime/greptimedb-operator -n default | ||
|
||
# Specifiy the chart version. | ||
helm install greptimedb-operator greptime/greptimedb-operator -n default --version <chart-version> | ||
|
@@ -26,3 +45,25 @@ helm install greptimedb-operator greptime/greptimedb-operator -n default --versi | |
```console | ||
helm uninstall greptimedb-operator -n default | ||
``` | ||
|
||
## Values | ||
|
||
| Key | Type | Default | Description | | ||
|-----|------|---------|-------------| | ||
| fullnameOverride | string | `""` | Provide a name to substitute for the full names of resources | | ||
| image.imagePullPolicy | string | `"IfNotPresent"` | The image pull policy for the controller | | ||
| image.pullSecrets | list | `[]` | The image pull secrets. | | ||
| image.registry | string | `"docker.io"` | The image registry | | ||
| image.repository | string | `"greptime/greptimedb-operator"` | The image repository | | ||
| image.tag | string | `"0.1.0-alpha.17"` | The image tag | | ||
| nameOverride | string | `""` | String to partially override release template name | | ||
| nodeSelector | object | `{}` | The operator node selector | | ||
| rbac.create | bool | `true` | Install Role Based Access Control | | ||
| replicas | int | `1` | Number of replicas for the greptimedb operator | | ||
| resources | object | `{"limits":{"cpu":"200m","memory":"256Mi"},"requests":{"cpu":"100m","memory":"128Mi"}}` | Default resources for greptimedb operator | | ||
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account | | ||
| serviceAccount.create | bool | `true` | Specifies whether a service account should be created | | ||
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template | | ||
|
||
---------------------------------------------- | ||
Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3) |
Oops, something went wrong.