Skip to content

Commit

Permalink
Merge pull request #3208 from abenbachir/abderb/tempo-memberlistport
Browse files Browse the repository at this point in the history
[tempo-distributed] Use memberlistBindPort instead of hardcoded values
  • Loading branch information
mapno authored Jul 15, 2024
2 parents 2e3e8fa + bd24d03 commit e7e0553
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/tempo-distributed/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: tempo-distributed
description: Grafana Tempo in MicroService mode
type: application
version: 1.15.0
version: 1.15.1
appVersion: 2.5.0
engine: gotpl
home: https://grafana.com/docs/tempo/latest/
Expand Down
2 changes: 1 addition & 1 deletion charts/tempo-distributed/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tempo-distributed

![Version: 1.15.0](https://img.shields.io/badge/Version-1.15.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
![Version: 1.15.1](https://img.shields.io/badge/Version-1.15.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)

Grafana Tempo in MicroService mode

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ spec:
ports:
- containerPort: 3100
name: http-metrics
- containerPort: 7946
- containerPort: {{ include "tempo.memberlistBindPort" . }}
name: http-memberlist
{{- with .Values.compactor.extraEnv }}
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
imagePullPolicy: {{ .Values.tempo.image.pullPolicy }}
name: distributor
ports:
- containerPort: 7946
- containerPort: {{ include "tempo.memberlistBindPort" . }}
name: http-memberlist
protocol: TCP
- containerPort: 3100
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ spec:
clusterIP: None
ports:
- name: gossip-ring
port: 7946
port: {{ include "tempo.memberlistBindPort" . }}
protocol: TCP
targetPort: http-memberlist
targetPort: {{ include "tempo.memberlistBindPort" . }}
{{- if .Values.tempo.memberlist.appProtocol }}
appProtocol: {{ .Values.tempo.memberlist.appProtocol }}
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ spec:
- name: grpc
containerPort: 9095
- name: http-memberlist
containerPort: 7946
containerPort: {{ include "tempo.memberlistBindPort" . }}
- name: http-metrics
containerPort: 3100
{{- with .Values.ingester.extraEnv }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ spec:
imagePullPolicy: {{ .Values.tempo.image.pullPolicy }}
name: querier
ports:
- containerPort: 7946
- containerPort: {{ include "tempo.memberlistBindPort" . }}
name: http-memberlist
protocol: TCP
- containerPort: 3100
Expand Down

0 comments on commit e7e0553

Please sign in to comment.