From ffd0fe8e232ce9db246572286062fe37a16b8b4e Mon Sep 17 00:00:00 2001 From: mpw Date: Tue, 14 Feb 2023 11:44:25 -0300 Subject: [PATCH] update env template --- charts/hub-treasuries/templates/environment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/hub-treasuries/templates/environment.yaml b/charts/hub-treasuries/templates/environment.yaml index 6a70d02..f6a4643 100644 --- a/charts/hub-treasuries/templates/environment.yaml +++ b/charts/hub-treasuries/templates/environment.yaml @@ -7,8 +7,8 @@ data: RUST_LOG: {{ .logLevel }} PORT: {{ .port | quote }} SECRET_PATH: "/app/secret.key" - KAFKA_BROKERS: {{- default "redpanda-0:9093" .kafkaBrokers | quote }} - KAFKA_SSL: {{- default "false" .kafkaSsl | quote }} + KAFKA_BROKERS: {{ default "redpanda-0:9093" .kafkaBrokers | quote }} + KAFKA_SSL: {{ default "false" .kafkaSsl | quote }} FIREBLOCKS_ENDPOINT: {{ required "must set fireblocks api endpoint" .fireblocksEndpoint | quote }} SOLANA_ENDPOINT: {{ required "must set solana rpc api endpoint" .solanaEndpoint | quote }} {{- end }}