From 5c7d4205a0eb75d2c86f4bc5972d913f4adc138d Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Fri, 2 Sep 2022 12:10:25 +0200 Subject: [PATCH] chore(helm): Adding quickwit values to global Signed-off-by: rjshrjndrn --- .../helmcharts/openreplay/charts/db/templates/deployment.yaml | 2 ++ scripts/helmcharts/vars.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml b/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml index 2c18179df..f05bdd42b 100644 --- a/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml +++ b/scripts/helmcharts/openreplay/charts/db/templates/deployment.yaml @@ -52,6 +52,8 @@ spec: value: '{{ .Values.global.kafka.kafkaUseSsl }}' - name: POSTGRES_STRING value: 'postgres://{{ .Values.global.postgresql.postgresqlUser }}:{{ .Values.global.postgresql.postgresqlPassword }}@{{ .Values.global.postgresql.postgresqlHost }}:{{ .Values.global.postgresql.postgresqlPort }}/{{ .Values.global.postgresql.postgresqlDatabase }}' + - name: QUICKWIT_ENABLED + value: '{{ .Values.global.quickwit.enabled }}' {{- range $key, $val := .Values.env }} - name: {{ $key }} value: '{{ $val }}' diff --git a/scripts/helmcharts/vars.yaml b/scripts/helmcharts/vars.yaml index e43a0df47..5e5487c3a 100644 --- a/scripts/helmcharts/vars.yaml +++ b/scripts/helmcharts/vars.yaml @@ -97,6 +97,7 @@ global: postgresql: *postgres kafka: *kafka redis: *redis + quickwit: *quickwit openReplayContainerRegistry: "public.ecr.aws/p1t3u8a3" s3: region: "us-east-1"