From 5dd6df9db66754b8f9b38d9589627d5cdc5cb3bc Mon Sep 17 00:00:00 2001 From: Tom Neuber Date: Thu, 3 Apr 2025 19:15:46 +0200 Subject: [PATCH] fix(thanos/querier): replace deprecated `--store` flag with `--endpoint` --- thanos/3-querier.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/thanos/3-querier.yaml b/thanos/3-querier.yaml index 648fa2b..04b6252 100644 --- a/thanos/3-querier.yaml +++ b/thanos/3-querier.yaml @@ -27,12 +27,12 @@ spec: - query - --log.level=info - --endpoint.info-timeout=30s + - --endpoint=storegateway.thanos.svc.cluster.local:10901 + - --endpoint=receiver-store-1.thanos.svc.cluster.local:10907 + - --endpoint=receiver-store-2.thanos.svc.cluster.local:10907 - --grpc-address=0.0.0.0:10901 - --http-address=0.0.0.0:10902 - --query.replica-label=prometheus_replica - - --store=storegateway.thanos.svc.cluster.local:10901 - - --store=receiver-store-1.thanos.svc.cluster.local:10907 - - --store=receiver-store-2.thanos.svc.cluster.local:10907 ports: - name: http containerPort: 10902 -- 2.45.3