From 8c53804f452a4d428e3ff163b7a010f450d42790 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Wed, 13 Mar 2024 10:47:45 +0100 Subject: [PATCH] fix(vars.yaml): Same accesskey for minio and s3, if using minio Signed-off-by: rjshrjndrn --- scripts/helmcharts/vars.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/helmcharts/vars.yaml b/scripts/helmcharts/vars.yaml index 9f4a5ccf7..099d66ee3 100644 --- a/scripts/helmcharts/vars.yaml +++ b/scripts/helmcharts/vars.yaml @@ -61,8 +61,8 @@ minio: minio: # For generating passwords # `openssl rand -hex 20` - accessKey: "{{ randAlphaNum 20 }}" - secretKey: "{{ randAlphaNum 20 }}" + accessKey: &accessKey "{{ randAlphaNum 20 }}" + secretKey: &secretKey "{{ randAlphaNum 20 }}" ingress-nginx: &ingress-nginx # If you're using an external proxy in front of OpenReplay, update the proxy ports below. @@ -135,8 +135,8 @@ global: # if you're using one node installation, where # you're using local s3, make sure these variables # are same as minio.global.minio.accesskey and secretKey - accessKey: "{{ randAlphaNum 20 }}" - secretKey: "{{ randAlphaNum 20}}" + accessKey: *accessKey + secretKey: *secretKey email: emailHost: '' emailPort: '587'