File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : tempo-distributed
33description : Grafana Tempo in MicroService mode
44type : application
5- version : 1.54.0
5+ version : 1.54.1
66appVersion : 2.9.0
77engine : gotpl
88home : https://grafana.com/docs/tempo/latest/
Original file line number Diff line number Diff line change 11# tempo-distributed
22
3- ![ Version: 1.54.0 ] ( https://img.shields.io/badge/Version-1.54.0 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 2.9.0] ( https://img.shields.io/badge/AppVersion-2.9.0-informational?style=flat-square )
3+ ![ Version: 1.54.1 ] ( https://img.shields.io/badge/Version-1.54.1 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 2.9.0] ( https://img.shields.io/badge/AppVersion-2.9.0-informational?style=flat-square )
44
55Grafana Tempo in MicroService mode
66
@@ -934,6 +934,8 @@ The memcached default args are removed and should be provided manually. The sett
934934| queryFrontend.replicas | int | `1` | Number of replicas for the query-frontend |
935935| queryFrontend.resources | object | `{}` | Resource requests and limits for the query-frontend |
936936| queryFrontend.service.annotations | object | `{}` | Annotations for queryFrontend service |
937+ | queryFrontend.service.grpcPort | int | `9095` | grpc Port of the query-frontend service |
938+ | queryFrontend.service.httpMetricsPort | int | `3200` | http Metrics port of the query-frontend service |
937939| queryFrontend.service.labels | object | `{}` | Labels for queryFrontend service |
938940| queryFrontend.service.loadBalancerIP | string | `""` | If type is LoadBalancer you can assign the IP to the LoadBalancer |
939941| queryFrontend.service.loadBalancerSourceRanges | list | `[]` | If type is LoadBalancer limit incoming traffic from IPs. |
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ spec:
1818 ipFamilyPolicy : {{ .Values.tempo.service.ipFamilyPolicy }}
1919 ports :
2020 - name : http-metrics
21- port : 3200
21+ port : {{ .Values.queryFrontend.service.httpMetricsPort }}
2222 targetPort : http-metrics
2323 - name : grpc
24- port : 9095
24+ port : {{ .Values.queryFrontend.service.grpcPort }}
2525 protocol : TCP
2626 targetPort : grpc
2727 {{- if .Values.queryFrontend.appProtocol.grpc }}
Original file line number Diff line number Diff line change @@ -1021,6 +1021,10 @@ queryFrontend:
10211021 service :
10221022 # -- Port of the query-frontend service
10231023 port : 16686
1024+ # -- http Metrics port of the query-frontend service
1025+ httpMetricsPort : 3200
1026+ # -- grpc Port of the query-frontend service
1027+ grpcPort : 9095
10241028 # -- Annotations for queryFrontend service
10251029 annotations : {}
10261030 # -- Labels for queryFrontend service
You can’t perform that action at this time.
0 commit comments