File tree Expand file tree Collapse file tree 4 files changed +18
-3
lines changed
charts/greptimedb-standalone Expand file tree Collapse file tree 4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : greptimedb-standalone
3
3
description : A Helm chart for deploying standalone greptimedb
4
4
type : application
5
- version : 0.1.27
5
+ version : 0.1.28
6
6
appVersion : 0.9.5
7
7
home : https://github.com/GreptimeTeam/greptimedb
8
8
sources :
Original file line number Diff line number Diff line change 2
2
3
3
A Helm chart for deploying standalone greptimedb
4
4
5
- ![ Version: 0.1.27 ] ( https://img.shields.io/badge/Version-0.1.27 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.9.5] ( https://img.shields.io/badge/AppVersion-0.9.5-informational?style=flat-square )
5
+ ![ Version: 0.1.28 ] ( https://img.shields.io/badge/Version-0.1.28 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 0.9.5] ( https://img.shields.io/badge/AppVersion-0.9.5-informational?style=flat-square )
6
6
7
7
## Source Code
8
8
- https://github.com/GreptimeTeam/greptimedb
@@ -57,6 +57,8 @@ helm uninstall greptimedb-standalone -n default
57
57
| configToml | string | ` "mode = 'standalone'\n" ` | The extra configuration for greptimedb |
58
58
| dataHome | string | ` "/data/greptimedb/" ` | Storage root directory |
59
59
| env | object | ` {"GREPTIMEDB_STANDALONE__HTTP__ADDR":"0.0.0.0:4000"} ` | Environment variables |
60
+ | extraVolumeMounts | list | ` [] ` | Volume mounts to add to the pods |
61
+ | extraVolumes | list | ` [] ` | Volumes to add to the pods |
60
62
| fullnameOverride | string | ` "" ` | Provide a name to substitute for the full names of resources |
61
63
| grpcServicePort | int | ` 4001 ` | GreptimeDB grpc service port |
62
64
| httpServicePort | int | ` 4000 ` | GreptimeDB http service port |
Original file line number Diff line number Diff line change @@ -116,15 +116,23 @@ spec:
116
116
mountPath : /etc/greptimedb
117
117
readOnly : true
118
118
{{- end }}
119
+ {{- with .Values.extraVolumeMounts }}
120
+ {{- toYaml . | nindent 12 }}
121
+ {{- end }}
119
122
{{- with .Values.resources }}
120
123
resources :
121
124
{{- toYaml . | nindent 12 }}
122
125
{{- end }}
123
- {{- if .Values.configToml }}
126
+ {{- if or .Values.configToml .Values.extraVolumes }}
124
127
volumes :
128
+ {{- if .Values.configToml }}
125
129
- name : config
126
130
configMap :
127
131
name : {{ .Release.Name }}-config
132
+ {{- end }}
133
+ {{- with .Values.extraVolumes }}
134
+ {{- toYaml . | nindent 8 }}
135
+ {{- end }}
128
136
{{- end }}
129
137
{{- with .Values.affinity }}
130
138
affinity :
Original file line number Diff line number Diff line change @@ -127,6 +127,11 @@ resources: {}
127
127
nodeSelector : {}
128
128
# disktype: ssd
129
129
130
+ # -- Volume mounts to add to the pods
131
+ extraVolumeMounts : []
132
+ # -- Volumes to add to the pods
133
+ extraVolumes : []
134
+
130
135
# -- Tolerations to apply pod
131
136
tolerations : {}
132
137
# - key: "key1"
You can’t perform that action at this time.
0 commit comments