This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a commit to branch bug/data-node-list in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git
commit 0b18721794884a4cb75f6a614be21e36cecc3300 Author: Gao Hongtao <[email protected]> AuthorDate: Mon Dec 1 13:53:07 2025 +0000 Fix missing port in data node list for liaison --- 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 }}
