From ca07d1c50ed4eb5459d9d3541055e3ddb857b376 Mon Sep 17 00:00:00 2001 From: Grraahaam <72856427+Grraahaam@users.noreply.github.com> Date: Thu, 9 Feb 2023 10:12:21 +0100 Subject: [PATCH] fix(chart): helpers template auth.password typo --- helm-charts/infisical/templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-charts/infisical/templates/_helpers.tpl b/helm-charts/infisical/templates/_helpers.tpl index f10e44c56..bf3f8e301 100644 --- a/helm-charts/infisical/templates/_helpers.tpl +++ b/helm-charts/infisical/templates/_helpers.tpl @@ -119,7 +119,7 @@ Create the mongodb connection string. {{- $host := include "infisical.mongodb.fullname" . -}} {{- $port := 27017 -}} {{- $user := first .Values.mongodb.auth.usernames | default "root" -}} -{{- $pass := first .Values.mongodb.auth.usernames | default "root" -}} +{{- $pass := first .Values.mongodb.auth.passwords | default "root" -}} {{- $database := first .Values.mongodb.auth.databases | default "test" -}} {{- $connectionString := printf "mongodb://%s:%s@%s:%d/%s" $user $pass $host $port $database -}} {{- if .Values.mongodbConnection.externalMongoDBConnectionString -}}