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 <francisco-jose.mulero@broadcom.com>

---------

Signed-off-by: Peter Trekels <peter.trekels@gmail.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: Fran Mulero <francisco-jose.mulero@broadcom.com>
Co-authored-by: Peter Trekels <peter.trekels@gmail.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Fran Mulero <francisco-jose.mulero@broadcom.com>
This commit is contained in:
ptrekelsseg
2025-01-21 11:59:55 +01:00
committed by GitHub
parent 2e7a486cda
commit 595525518d
3 changed files with 8 additions and 4 deletions

View File

@@ -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))
## <small>1.1.1 (2025-01-07)</small>
* [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)

View File

@@ -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

View File

@@ -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 }}