Skip to content

Commit 939ef5b

Browse files
Merge pull request #3997 from Sheikh-Abubaker/port-config
[tempo-distributed] Add support for configurable ports
2 parents 89cadc5 + 8f22a48 commit 939ef5b

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

charts/tempo-distributed/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: tempo-distributed
33
description: Grafana Tempo in MicroService mode
44
type: application
5-
version: 1.54.0
5+
version: 1.54.1
66
appVersion: 2.9.0
77
engine: gotpl
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-distributed/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
Grafana 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. |

charts/tempo-distributed/templates/query-frontend/service-query-frontend.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }}

charts/tempo-distributed/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)