Skip to content

Commit 62cf16b

Browse files
authored
feat: add auto_sync_interval (#122)
* feat: add auto_sync_interval * bump version
1 parent 13ae788 commit 62cf16b

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

charts/databend-query/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ type: application
2525
# This is the chart version. This version number should be incremented each time you make changes
2626
# to the chart and its templates, including the app version.
2727
# Versions are expected to follow Semantic Versioning (https://semver.org/)
28-
version: 0.11.0
28+
version: 0.11.1
2929

3030
# This is the version number of the application being deployed. This version number should be
3131
# incremented each time you make changes to the application. Versions are not expected to

charts/databend-query/templates/configmap.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ data:
8484
username = {{ .Values.config.meta.username | quote }}
8585
password = {{ .Values.config.meta.password | quote }}
8686
client_timeout_in_second = {{ .Values.config.meta.clientTimeoutInSecond | default 60 }}
87+
auto_sync_interval = {{ .Values.config.meta.autoSyncInterval | default 60 }}
8788
8889
[storage]
8990
type = {{ $storageType | quote }}

charts/databend-query/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ config:
138138
username: "root"
139139
password: "root"
140140
clientTimeoutInSecond: 60
141+
autoSyncInterval: 60
141142

142143
# [storage]
143144
storage:

0 commit comments

Comments
 (0)