Skip to content

Commit

Permalink
fix(query): missing .cluster.local for meta endpoints (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc authored Jul 29, 2024
1 parent 64a3107 commit 4e8e004
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/databend-query/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.10.1
version: 0.10.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
7 changes: 4 additions & 3 deletions charts/databend-query/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,10 @@ config:
meta:
# Set endpoints to use remote meta service
endpoints:
- "databend-meta-0.databend-meta.databend-meta.svc:9191"
- "databend-meta-1.databend-meta.databend-meta.svc:9191"
- "databend-meta-2.databend-meta.databend-meta.svc:9191"
# <podName>.<serviceName>.<namespace>.svc.cluster.local:9191
- "databend-meta-0.databend-meta.databend-meta.svc.cluster.local:9191"
- "databend-meta-1.databend-meta.databend-meta.svc.cluster.local:9191"
- "databend-meta-2.databend-meta.databend-meta.svc.cluster.local:9191"
username: "root"
password: "root"
clientTimeoutInSecond: 60
Expand Down
2 changes: 0 additions & 2 deletions examples/query-cluster-with-s3.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
replicaCount: 3
config:
clsuterId: cluster1
meta:
address: db-databend-meta:9191
storage:
type: s3
s3:
Expand Down
3 changes: 0 additions & 3 deletions examples/query-with-meta.yaml

This file was deleted.

0 comments on commit 4e8e004

Please sign in to comment.