Skip to content

Commit e1178ed

Browse files
Merge pull request #3748 from KyriosGN0/tempo-single
[tempo] fix port 3200 alignment
2 parents b9da35d + f2f79b5 commit e1178ed

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

charts/tempo/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
33
description: Grafana Tempo Single Binary Mode
44
type: application
5-
version: 1.23.0
5+
version: 1.23.1
66
appVersion: 2.8.0
77
engine: gotpl
88
home: https://grafana.net

charts/tempo/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tempo
22

3-
![Version: 1.23.0](https://img.shields.io/badge/Version-1.23.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.0](https://img.shields.io/badge/AppVersion-2.8.0-informational?style=flat-square)
3+
![Version: 1.23.1](https://img.shields.io/badge/Version-1.23.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.0](https://img.shields.io/badge/AppVersion-2.8.0-informational?style=flat-square)
44

55
Grafana Tempo Single Binary Mode
66

@@ -64,7 +64,7 @@ Grafana Tempo Single Binary Mode
6464
| tempo.ingester | object | `{}` | Configuration options for the ingester. Refers to: https://grafana.com/docs/tempo/latest/configuration/#ingester |
6565
| tempo.livenessProbe.failureThreshold | int | `3` | |
6666
| tempo.livenessProbe.httpGet.path | string | `"/ready"` | |
67-
| tempo.livenessProbe.httpGet.port | int | `3100` | |
67+
| tempo.livenessProbe.httpGet.port | int | `3200` | |
6868
| tempo.livenessProbe.initialDelaySeconds | int | `30` | |
6969
| tempo.livenessProbe.periodSeconds | int | `10` | |
7070
| tempo.livenessProbe.successThreshold | int | `1` | |
@@ -82,7 +82,7 @@ Grafana Tempo Single Binary Mode
8282
| tempo.queryFrontend | object | `{}` | Configuration options for the query-fronted. Refers to: https://grafana.com/docs/tempo/latest/configuration/#query-frontend |
8383
| tempo.readinessProbe.failureThreshold | int | `3` | |
8484
| tempo.readinessProbe.httpGet.path | string | `"/ready"` | |
85-
| tempo.readinessProbe.httpGet.port | int | `3100` | |
85+
| tempo.readinessProbe.httpGet.port | int | `3200` | |
8686
| tempo.readinessProbe.initialDelaySeconds | int | `20` | |
8787
| tempo.readinessProbe.periodSeconds | int | `10` | |
8888
| tempo.readinessProbe.successThreshold | int | `1` | |
@@ -99,7 +99,7 @@ Grafana Tempo Single Binary Mode
9999
| tempo.resources | object | `{}` | |
100100
| tempo.retention | string | `"24h"` | |
101101
| tempo.securityContext | object | `{}` | |
102-
| tempo.server.http_listen_port | int | `3100` | HTTP server listen port |
102+
| tempo.server.http_listen_port | int | `3200` | HTTP server listen port |
103103
| tempo.storage.trace.backend | string | `"local"` | |
104104
| tempo.storage.trace.local.path | string | `"/var/tempo/traces"` | |
105105
| tempo.storage.trace.wal.path | string | `"/var/tempo/wal"` | |

charts/tempo/templates/_ports.tpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
{{/* TCP sockets */}}
2525
{{- define "tempo.tcp"}}
2626
- name: tempo-prom-metrics
27-
port: 3100
27+
port: 3200
2828
protocol: TCP
29-
targetPort: 3100
29+
targetPort: 3200
3030
{{- if .Values.tempoQuery.enabled }}
3131
- name: jaeger-metrics
3232
port: 16687
@@ -85,4 +85,4 @@
8585
protocol: TCP
8686
targetPort: 55678
8787
{{- /* end of define */}}
88-
{{- end }}
88+
{{- end }}

charts/tempo/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ tempo:
8888
# Refers to: https://grafana.com/docs/tempo/latest/configuration/#server
8989
server:
9090
# -- HTTP server listen port
91-
http_listen_port: 3100
91+
http_listen_port: 3200
9292
# Readiness and Liveness Probe Configuration Options
9393
livenessProbe:
9494
httpGet:
9595
path: /ready
96-
port: 3100
96+
port: 3200
9797
initialDelaySeconds: 30
9898
periodSeconds: 10
9999
timeoutSeconds: 5
@@ -102,7 +102,7 @@ tempo:
102102
readinessProbe:
103103
httpGet:
104104
path: /ready
105-
port: 3100
105+
port: 3200
106106
initialDelaySeconds: 20
107107
periodSeconds: 10
108108
timeoutSeconds: 5

0 commit comments

Comments
 (0)