From c22898bce2f307e8eca9d8be9890ca8514713ec9 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Tue, 19 Nov 2024 16:41:49 +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 }}"