Skip to content

Commit

Permalink
fix: correct the clickhouse zookeeper FQDN format (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
shrutimantri authored Jul 14, 2024
1 parent 39d0f4c commit d7aecc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/clickhouse/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: clickhouse
description: A Helm chart for ClickHouse
type: application
version: 24.1.2
version: 24.1.3
appVersion: "24.1.2"
icon: https://github.com/ClickHouse/clickhouse-docs/raw/84f38d893eb7e561c7296279d7953b6a508ec413/static/img/clickhouse-logo.svg
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/clickhouse/templates/_helper.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Return suffix part of the headless service
{{- $clusterDomain := default "cluster.local" .Values.global.clusterDomain }}
{{- $name := printf "%s-headless" (include "clickhouse.zookeeper.servicename" .) }}
{{- if and $namespace (ne $namespace .Values.namespace) }}
{{- printf "%s.svc.%s.%s" $name $namespace $clusterDomain }}
{{- printf "%s.%s.svc.%s" $name $namespace $clusterDomain }}
{{- else -}}
{{- $name }}
{{- end }}
Expand Down

0 comments on commit d7aecc6

Please sign in to comment.