From 4ec7f2148013ccb3ac1dba6f5e98d9f00c452858 Mon Sep 17 00:00:00 2001 From: Anton Donskoy Date: Thu, 17 Oct 2024 19:29:27 +0300 Subject: [PATCH] fix(snuba): Add missing --no-strict-offset-reset for replacer --- charts/sentry/templates/snuba/deployment-snuba-replacer.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/charts/sentry/templates/snuba/deployment-snuba-replacer.yaml b/charts/sentry/templates/snuba/deployment-snuba-replacer.yaml index 36d19baf1..9cfcf3697 100644 --- a/charts/sentry/templates/snuba/deployment-snuba-replacer.yaml +++ b/charts/sentry/templates/snuba/deployment-snuba-replacer.yaml @@ -85,6 +85,9 @@ spec: - "--auto-offset-reset" - "{{ .Values.snuba.replacer.autoOffsetReset }}" {{- end }} + {{- if .Values.snuba.replacer.noStrictOffsetReset }} + - "--no-strict-offset-reset" + {{- end }} {{- if .Values.snuba.replacer.maxBatchTimeMs }} - "--max-batch-time-ms" - "{{ .Values.snuba.replacer.maxBatchTimeMs }}"