From f7cf41354fb5a501f78f4deee55a7218785f5f40 Mon Sep 17 00:00:00 2001 From: Avo Sepp <68659218+avo-sepp@users.noreply.github.com> Date: Fri, 12 May 2023 12:54:26 -0400 Subject: [PATCH] toJson now toRawJson Some queries make use of less-than/greater-than characters. Helm's toJson will escape these. By using toRawJson they are not escaped. --- templates/deployment-server.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/deployment-server.yaml b/templates/deployment-server.yaml index 70ec475..a84c022 100644 --- a/templates/deployment-server.yaml +++ b/templates/deployment-server.yaml @@ -91,7 +91,7 @@ spec: - name: UVICORN_NUM_WORKERS value: {{ .Values.server.uvicornWorkers | quote }} - name: OPAL_DATA_CONFIG_SOURCES - value: {{ .Values.server.dataConfigSources | toJson | squote }} + value: {{ .Values.server.dataConfigSources | toRawJson | squote }} {{- if .Values.server.broadcastUri }} - name: OPAL_BROADCAST_URI value: {{ .Values.server.broadcastUri | quote }}