From e465e38382dee10772e34da72adef5086c696c47 Mon Sep 17 00:00:00 2001 From: Tazmaniac Date: Thu, 12 Jan 2023 21:07:00 +0100 Subject: [PATCH] Helm: Add missing azure check (#8113) In Azure storage case, storage ruler config is correctly prepared, but not included. --- production/helm/loki/templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/production/helm/loki/templates/_helpers.tpl b/production/helm/loki/templates/_helpers.tpl index 00c99d69f5..37566db420 100644 --- a/production/helm/loki/templates/_helpers.tpl +++ b/production/helm/loki/templates/_helpers.tpl @@ -292,7 +292,7 @@ azure: {{/* Predicate function to determin if custom ruler config should be included */}} {{- define "loki.shouldIncludeRulerConfig" }} -{{- or (not (empty .Values.loki.rulerConfig)) (.Values.minio.enabled) (eq .Values.loki.storage.type "s3") (eq .Values.loki.storage.type "gcs") }} +{{- or (not (empty .Values.loki.rulerConfig)) (.Values.minio.enabled) (eq .Values.loki.storage.type "s3") (eq .Values.loki.storage.type "gcs") (eq .Values.loki.storage.type "azure") }} {{- end }} {{/* Loki ruler config */}}