From 595525518d251b8e5c4597b7261d3b0c00ef30e2 Mon Sep 17 00:00:00 2001
From: ptrekelsseg
Date: Tue, 21 Jan 2025 11:59:55 +0100
Subject: [PATCH] bitnami/zipkin Remove quote for the host (#31374)
* Remove quote for the host
This is needed because it will later be combined with the port in the
configmap.
* Cast 'zipkin.cassandra.port' to int
Signed-off-by: Fran Mulero
---------
Signed-off-by: Peter Trekels
Signed-off-by: Bitnami Containers
Signed-off-by: Fran Mulero
Co-authored-by: Peter Trekels
Co-authored-by: Bitnami Containers
Co-authored-by: Fran Mulero
---
bitnami/zipkin/CHANGELOG.md | 8 ++++++--
bitnami/zipkin/Chart.yaml | 2 +-
bitnami/zipkin/templates/configmap.yaml | 2 +-
3 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/bitnami/zipkin/CHANGELOG.md b/bitnami/zipkin/CHANGELOG.md
index 81535bbae9..b532815e3b 100644
--- a/bitnami/zipkin/CHANGELOG.md
+++ b/bitnami/zipkin/CHANGELOG.md
@@ -1,8 +1,12 @@
# Changelog
-## 1.1.1 (2025-01-07)
+## 1.1.2 (2025-01-21)
-* [bitnami/zipkin] Release 1.1.1 ([#31228](https://github.com/bitnami/charts/pull/31228))
+* bitnami/zipkin Remove quote for the host ([#31374](https://github.com/bitnami/charts/pull/31374))
+
+## 1.1.1 (2025-01-07)
+
+* [bitnami/zipkin] Release 1.1.1 (#31228) ([a71714c](https://github.com/bitnami/charts/commit/a71714cd224837c124b989f7ffd5b795ca0fb699)), closes [#31228](https://github.com/bitnami/charts/issues/31228)
## 1.1.0 (2024-12-10)
diff --git a/bitnami/zipkin/Chart.yaml b/bitnami/zipkin/Chart.yaml
index 8303235184..7919e3449d 100644
--- a/bitnami/zipkin/Chart.yaml
+++ b/bitnami/zipkin/Chart.yaml
@@ -35,4 +35,4 @@ sources:
- https://github.com/bitnami/charts/tree/main/bitnami/zipkin
- https://github.com/bitnami/containers/tree/main/bitnami/zipkin
- https://github.com/openzipkin/zipkin
-version: 1.1.1
+version: 1.1.2
diff --git a/bitnami/zipkin/templates/configmap.yaml b/bitnami/zipkin/templates/configmap.yaml
index 73e3c9c30a..c55facf97d 100644
--- a/bitnami/zipkin/templates/configmap.yaml
+++ b/bitnami/zipkin/templates/configmap.yaml
@@ -13,7 +13,7 @@ QUERY_PORT: {{ .Values.containerPorts.http | quote }}
STORAGE_TYPE: "mem"
{{- else if eq .Values.storageType "cassandra3" }}
STORAGE_TYPE: "cassandra3"
-CASSANDRA_CONTACT_POINTS: {{ include "zipkin.cassandra.host" . }}:{{ include "zipkin.cassandra.port" . }}
+CASSANDRA_CONTACT_POINTS: {{ printf "%s:%d" ( include "zipkin.cassandra.host" . ) ( include "zipkin.cassandra.port" . | int ) }}
CASSANDRA_USERNAME: {{ include "zipkin.cassandra.user" . | quote }}
CASSANDRA_KEYSPACE: {{ include "zipkin.cassandra.keyspace" . | quote }}
CASSANDRA_LOCAL_DC: {{ include "zipkin.cassandra.datacenter" . | quote }}