From 600eba27a1203ca36f1bc8efab2baa33a23261c2 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Wed, 5 Feb 2025 14:51:11 +0100 Subject: [PATCH] fix(helm): varable value Signed-off-by: rjshrjndrn --- scripts/helmcharts/openreplay/templates/configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/helmcharts/openreplay/templates/configmap.yaml b/scripts/helmcharts/openreplay/templates/configmap.yaml index 4f68d1d5d..722f92f80 100644 --- a/scripts/helmcharts/openreplay/templates/configmap.yaml +++ b/scripts/helmcharts/openreplay/templates/configmap.yaml @@ -28,6 +28,6 @@ data: PGPASSWORD: "{{ .Values.global.postgresql.postgresqlPassword | b64enc }}" CLICKHOUSE_USER: "{{ .Values.global.clickhouse.username | b64enc }}" CLICKHOUSE_PASSWORD: "{{ .Values.global.clickhouse.password | b64enc }}" - MINIO_HOST: "{{ .Values.global.minio.minioHost | b64enc }}" + MINIO_HOST: "{{ .Values.global.s3.endpoint | b64enc }}" MINIO_ACCESS_KEY: "{{ .Values.global.s3.accessKey | b64enc }}" MINIO_SECRET_KEY: "{{ .Values.global.s3.secretKey | b64enc }}"