From 4e45eb4bf50e5404e13b31197b01101263644a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20M=C3=BCller?= Date: Mon, 11 Dec 2023 00:48:11 +0100 Subject: [PATCH] fix(loki): increase timeout and enable autoscaling for the backend --- .../talos-flux/apps/observability/loki/app/helm-release.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kubernetes/talos-flux/apps/observability/loki/app/helm-release.yaml b/kubernetes/talos-flux/apps/observability/loki/app/helm-release.yaml index 1bfcbd6b9..84e568345 100644 --- a/kubernetes/talos-flux/apps/observability/loki/app/helm-release.yaml +++ b/kubernetes/talos-flux/apps/observability/loki/app/helm-release.yaml @@ -5,7 +5,8 @@ kind: HelmRelease metadata: name: loki spec: - timeout: 10m + # timeout need to be increased because of https://github.com/grafana/loki/issues/9523#issuecomment-1655766287 + timeout: 30m interval: 30m chart: spec: @@ -172,6 +173,8 @@ spec: backend: replicas: 3 autoscaling: + # enabling autoscaling for the backend, but we set minReplicas and maxReplicas to the same value + # this is a workaround for https://github.com/grafana/loki/issues/9523#issuecomment-1655766287 enabled: true minReplicas: 3 maxReplicas: 3