From 0952c0c77fbdaf28e25d98163498a889fb4b6a6b Mon Sep 17 00:00:00 2001 From: Nikita Date: Fri, 28 Jul 2023 10:55:24 +0300 Subject: [PATCH] fix: single qoutes for trace attributes Signed-off-by: Nikita --- templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/_helpers.tpl b/templates/_helpers.tpl index 7f6f3f72e..858d0f1bb 100644 --- a/templates/_helpers.tpl +++ b/templates/_helpers.tpl @@ -475,7 +475,7 @@ app: "{{ template "harbor.name" . }}" TRACE_SAMPLE_RATE: "{{ .Values.trace.sample_rate }}" TRACE_NAMESPACE: "{{ .Values.trace.namespace }}" {{- if .Values.trace.attributes }} - TRACE_ATTRIBUTES: "{{ .Values.trace.attributes | toJson }}" + TRACE_ATTRIBUTES: {{ .Values.trace.attributes | toJson | squote }} {{- end }} {{- if eq .Values.trace.provider "jaeger" }} TRACE_JAEGER_ENDPOINT: "{{ .Values.trace.jaeger.endpoint }}"