You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by cr...@apache.org on 2021/02/18 15:46:54 UTC

[superset] branch master updated: Evaluate configOverrides as templates (#13130)

This is an automated email from the ASF dual-hosted git repository.

craigrueda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 1e17ef3  Evaluate configOverrides as templates (#13130)
1e17ef3 is described below

commit 1e17ef3410e5513cc5ace848c49472221dfe320d
Author: Yann Jouanique <ya...@oneacrefund.org>
AuthorDate: Thu Feb 18 17:46:23 2021 +0200

    Evaluate configOverrides as templates (#13130)
---
 helm/superset/templates/_helpers.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm/superset/templates/_helpers.tpl b/helm/superset/templates/_helpers.tpl
index 6b2ad27..c093bf5 100644
--- a/helm/superset/templates/_helpers.tpl
+++ b/helm/superset/templates/_helpers.tpl
@@ -102,7 +102,7 @@ RESULTS_BACKEND = RedisCache(
 # Overrides
 {{- range $key, $value := .Values.configOverrides }}
 # {{ $key }}
-{{ $value }}
+{{ tpl $value $ }}
 {{- end }}
 {{- end }}