This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git
The following commit(s) were added to refs/heads/master by this push:
new eae77a5 Fix missing port in data node list for liaison (#42)
eae77a5 is described below
commit eae77a5fb57e1923e95ffc1805a34f87da6f6b57
Author: Gao Hongtao <[email protected]>
AuthorDate: Mon Dec 1 22:31:46 2025 +0800
Fix missing port in data node list for liaison (#42)
---
CHANGES.md | 8 ++++++++
chart/Chart.lock | 2 +-
chart/templates/_helpers.tpl | 2 +-
3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/CHANGES.md b/CHANGES.md
index 599a062..f752245 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -2,6 +2,14 @@ Changes by Version
==================
Release Notes.
+0.5.3
+
+-----------------
+
+#### Bugs
+
+- Fix missing port in data node list for liaison.
+
0.5.2
-----------------
diff --git a/chart/Chart.lock b/chart/Chart.lock
index 7d1fc61..9cd8e6e 100644
--- a/chart/Chart.lock
+++ b/chart/Chart.lock
@@ -3,4 +3,4 @@ dependencies:
repository: oci://registry-1.docker.io/bitnamicharts
version: 12.0.18
digest: sha256:428d19828d309ec37ac9e569328eda161160b9a42cb7af3b6a3a44c738720fb2
-generated: "2025-11-11T01:20:08.994016402Z"
+generated: "2025-12-01T13:43:43.145958375Z"
diff --git a/chart/templates/_helpers.tpl b/chart/templates/_helpers.tpl
index 0380fd5..5d8f674 100644
--- a/chart/templates/_helpers.tpl
+++ b/chart/templates/_helpers.tpl
@@ -118,7 +118,7 @@ Generate data node names list for "hot" role only
{{- range $i := until (int $replicas) }}
{{- $podName := printf "%s-data-%s-%d" $fullname $roleName $i }}
{{- $fqdn := printf "%s.%s-data-%s-headless.%s" $podName $fullname
$roleName $namespace }}
- {{- $dataNodes = append $dataNodes $fqdn }}
+ {{- $dataNodes = append $dataNodes (printf "%s:17912" $fqdn) }}
{{- end }}
{{- end }}
{{- end }}