Helm: Add missing azure check (#8113)

In Azure storage case, storage ruler config is correctly prepared, but
not included.
pull/8124/head
Tazmaniac 2 years ago committed by GitHub
parent 9cab63d921
commit e465e38382
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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 */}}

Loading…
Cancel
Save