[bitnami/harbor] update tracing environment variables and escaping (#33680)

* update tracing environment variables and escaping

Signed-off-by: Derek Morgan <2354832+d-m@users.noreply.github.com>

---------

Signed-off-by: Derek Morgan <2354832+d-m@users.noreply.github.com>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Derek Morgan
2025-05-14 12:34:05 +02:00
committed by GitHub
co-authored by Bitnami Bot
parent c8e3e76d9d
commit c9ec3e08d1
3 changed files with 14 additions and 5 deletions
+11 -2
View File
@@ -1,8 +1,17 @@
# Changelog
## 26.0.0 (2025-05-08)
## 26.0.2 (2025-05-14)
* [bitnami/harbor] feat!: :arrow_up: :boom: Bump Redis(R) to 8.0 ([#33502](https://github.com/bitnami/charts/pull/33502))
* [bitnami/harbor] update tracing environment variables and escaping ([#33680](https://github.com/bitnami/charts/pull/33680))
## <small>26.0.1 (2025-05-09)</small>
* [bitnami/harbor] :zap: :arrow_up: Update dependency references (#33596) ([0259db0](https://github.com/bitnami/charts/commit/0259db0c2f6d7eae28777399bf075fbb0bcb6b65)), closes [#33596](https://github.com/bitnami/charts/issues/33596)
## 26.0.0 (2025-05-09)
* [bitnami/harbor] feat!: :arrow_up: :boom: Bump Redis(R) to 8.0 (#33502) ([1fe91e0](https://github.com/bitnami/charts/commit/1fe91e0de5f7f343c31ff8bd8ac44ace87253207)), closes [#33502](https://github.com/bitnami/charts/issues/33502)
* [bitnami/kubeapps] Deprecation followup (#33579) ([77e312c](https://github.com/bitnami/charts/commit/77e312c1772d4d7c4dc5d3ac0e80f4e452e3a062)), closes [#33579](https://github.com/bitnami/charts/issues/33579)
## <small>25.0.2 (2025-05-08)</small>
+1 -1
View File
@@ -56,4 +56,4 @@ maintainers:
name: harbor
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/harbor
version: 26.0.1
version: 26.0.2
+2 -2
View File
@@ -520,10 +520,10 @@ harbor: Redis Mutual TLS
{{/* lists all tracing related environment variables except for TRACE_SERVICE_NAME, which should be set separately */}}
{{- define "harbor.tracing.envvars" -}}
TRACE_ENABLE: {{ .Values.tracing.enabled | quote }}
TRACE_ENABLED: {{ .Values.tracing.enabled | quote }}
TRACE_SAMPLE_RATE: {{ .Values.tracing.sampleRate | quote }}
TRACE_NAMESPACE: {{ .Values.tracing.namespace | quote }}
TRACE_ATTRIBUTES: {{ .Values.tracing.attributes | toJson }}
TRACE_ATTRIBUTES: {{ .Values.tracing.attributes | toJson | squote }}
{{- if .Values.tracing.jaeger.enabled }}
TRACE_JAEGER_ENDPOINT: {{ .Values.tracing.jaeger.endpoint | quote }}
TRACE_JAEGER_USERNAME: {{ .Values.tracing.jaeger.username | quote }}