Skip to content

Commit

Permalink
chore: upgrade greptimedb version (#35)
Browse files Browse the repository at this point in the history
* chore: upgrade greptimedb version

* chore: add frontend tls configure

* refactor: delete greptimedb directory
  • Loading branch information
daviderli614 authored Feb 23, 2023
1 parent a7763b0 commit 0dd9967
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/greptimedb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: greptimedb
description: A Helm chart for deploying GreptimeDB cluster in Kubernetes
type: application
version: 0.1.1-alpha.3
appVersion: 0.1.0-alpha-20221212-weekly
version: 0.1.1-alpha.4
appVersion: 0.1.0-alpha-20230220-weekly
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ spec:
{{- end }}
frontend:
replicas: {{ .Values.frontend.replicas }}
{{- if .Values.frontend.tls }}
tls: {{- toYaml .Values.frontend.tls | nindent 6 }}
{{- end }}
{{- if .Values.frontend.service }}
service: {{- toYaml .Values.frontend.service | nindent 6 }}
{{- end }}
{{- if .Values.frontend.componentSpec }}
template: {{- toYaml .Values.frontend.componentSpec | nindent 6 }}
{{- end }}
meta:
replicas: {{ .Values.meta.replicas }}
{{- if .Values.etcdEndpoints }}
Expand All @@ -37,3 +43,6 @@ spec:
openTSDBServicePort: {{ .Values.openTSDBServicePort }}
initializer:
image: '{{ .Values.initializer.registry }}/{{ .Values.initializer.repository }}:{{ .Values.initializer.tag }}'
{{- if .Values.storage }}
storage: {{- toYaml .Values.storage | nindent 4 }}
{{- end }}
16 changes: 14 additions & 2 deletions charts/greptimedb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ image:
# The image repository
repository: greptime/greptimedb
# The image tag
tag: 0.1.0-alpha-20221212-weekly
tag: 0.1.0-alpha-20230220-weekly

resources:
requests:
Expand All @@ -16,6 +16,11 @@ resources:
frontend:
replicas: 1
service: {}
componentSpec: {}

tls: {}
# secretName:
# certificateMountPath:

meta:
replicas: 1
Expand All @@ -30,7 +35,7 @@ datanode:
initializer:
registry: docker.io
repository: greptime/greptimedb-initializer
tag: 0.1.0-alpha.8
tag: 0.1.0-alpha.9

etcdEndpoints: ""

Expand All @@ -41,3 +46,10 @@ postgresServicePort: 4003
openTSDBServicePort: 4242

enablePrometheusMonitor: false

storage: {}
# s3:
# bucket: ""
# region: ""
# secretName: ""
# prefix: ""

0 comments on commit 0dd9967

Please sign in to comment.