From 87fb2a82e75c38fc84c811f53ea283eff89e6a7d Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Tue, 11 Apr 2023 14:24:29 +0200 Subject: [PATCH] chore(helm): Adding option for records bucket (#1146) Signed-off-by: rjshrjndrn --- .../openreplay/charts/chalice/templates/deployment.yaml | 2 ++ scripts/helmcharts/vars.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml index eaaab92c5..6369e52c4 100644 --- a/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/chalice/templates/deployment.yaml @@ -110,6 +110,8 @@ spec: value: '{{ .Values.global.s3.region }}' - name: sessions_region value: '{{ .Values.global.s3.region }}' + - name: ASSIST_RECORDS_BUCKET + value: {{ .Values.global.s3.assistRecordsBucket }} - name: sessions_bucket value: {{ .Values.global.s3.recordingsBucket }} - name: sourcemaps_bucket diff --git a/scripts/helmcharts/vars.yaml b/scripts/helmcharts/vars.yaml index bdb40ae0f..dea913e98 100644 --- a/scripts/helmcharts/vars.yaml +++ b/scripts/helmcharts/vars.yaml @@ -117,6 +117,7 @@ global: assetsBucket: "sessions-assets" recordingsBucket: "mobs" sourcemapsBucket: "sourcemaps" + assistRecordsBucket: "records" vaultBucket: "vault-data" # This is only for enterpriseEdition quickwitBucket: "quickwit"