fix(thanos): Use correct port for thanos query

This commit is contained in:
Jim Martens 2024-02-04 11:59:20 +01:00
parent d546168321
commit 3f1534e594
Signed by: 2martens
GPG Key ID: 47393ABD1F96B7C8
2 changed files with 3 additions and 2 deletions

View File

@ -49,7 +49,7 @@ spec:
- --endpoint=dnssrv+_grpc._tcp.thanos-store.thanos.svc.cluster.local:10901
- --endpoint=dnssrv+_grpc._tcp.thanos-receive-ingestor-default.thanos.svc.cluster.local:10901
{{- range .Values.clusters }}
- --endpoint=_grpc._tcp.{{ .thanosEndpoint }}:10901
- "--endpoint=_grpc._tcp.{{ .thanosEndpoint }}:{{ .thanosPort }}"
{{- end }}
- --query.auto-downsampling
env:

View File

@ -1,2 +1,3 @@
clusters:
- thanosEndpoint: 10.0.0.4
- thanosEndpoint: 10.0.0.4
thanosPort: 30901