Skip to content

Commit 4ca46ff

Browse files
authored
Merge pull request #3500 from xogoodnow/default-port
[tempo-distributed] Changed the default port
2 parents 72a7caf + 973214d commit 4ca46ff

20 files changed

+47
-39
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.40.4
5+
version: 1.41.0
66
appVersion: 2.7.2
77
engine: gotpl
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-distributed/README.md

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

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

55
Grafana Tempo in MicroService mode
66

@@ -48,6 +48,10 @@ The command removes all the Kubernetes components associated with the chart and
4848

4949
A major chart version change indicates that there is an incompatible breaking change needing manual actions.
5050

51+
### From Chart versions < 1.41.0
52+
* Breaking Change *
53+
In order to be consistent with other projects and documentations, the default port has been changed from 3100 to 3200.
54+
5155
### From Chart versions < 1.33.0
5256
* Breaking Change *
5357
In order to reduce confusion, the overrides configurations have been renamed as below.
@@ -426,7 +430,7 @@ The memcached default args are removed and should be provided manually. The sett
426430
| enterpriseFederationFrontend.service.annotations | object | `{}` | Annotations for enterpriseFederationFrontend service |
427431
| enterpriseFederationFrontend.service.loadBalancerIP | string | `""` | If type is LoadBalancer you can assign the IP to the LoadBalancer |
428432
| enterpriseFederationFrontend.service.loadBalancerSourceRanges | list | `[]` | If type is LoadBalancer limit incoming traffic from IPs. |
429-
| enterpriseFederationFrontend.service.port | int | `3100` | Port of the federation-frontend service |
433+
| enterpriseFederationFrontend.service.port | int | `3200` | Port of the federation-frontend service |
430434
| enterpriseFederationFrontend.service.type | string | `"ClusterIP"` | Type of service for the enterpriseFederationFrontend |
431435
| enterpriseFederationFrontend.terminationGracePeriodSeconds | int | `30` | Grace period to allow the federation-frontend to shutdown before it is killed |
432436
| enterpriseFederationFrontend.tolerations | list | `[]` | Tolerations for federation-frontend pods |
@@ -734,7 +738,7 @@ The memcached default args are removed and should be provided manually. The sett
734738
| metricsGenerator.persistentVolumeClaimRetentionPolicy.whenScaled | string | `"Retain"` | Volume retention behavior when the replica count of the StatefulSet is reduced |
735739
| metricsGenerator.podAnnotations | object | `{}` | Annotations for metrics-generator pods |
736740
| metricsGenerator.podLabels | object | `{}` | Labels for metrics-generator pods |
737-
| metricsGenerator.ports | list | `[{"name":"grpc","port":9095,"service":true},{"name":"http-memberlist","port":7946,"service":false},{"name":"http-metrics","port":3100,"service":true}]` | Default ports |
741+
| metricsGenerator.ports | list | `[{"name":"grpc","port":9095,"service":true},{"name":"http-memberlist","port":7946,"service":false},{"name":"http-metrics","port":3200,"service":true}]` | Default ports |
738742
| metricsGenerator.priorityClassName | string | `nil` | The name of the PriorityClass for metrics-generator pods |
739743
| metricsGenerator.replicas | int | `1` | Number of replicas for the metrics-generator |
740744
| metricsGenerator.resources | object | `{}` | Resource requests and limits for the metrics-generator |
@@ -874,7 +878,7 @@ The memcached default args are removed and should be provided manually. The sett
874878
| queryFrontend.podAnnotations | object | `{}` | Annotations for query-frontend pods |
875879
| queryFrontend.podLabels | object | `{}` | Labels for queryFrontend pods |
876880
| queryFrontend.priorityClassName | string | `nil` | The name of the PriorityClass for query-frontend pods |
877-
| queryFrontend.query.config | string | `"backend: 127.0.0.1:3100\n"` | |
881+
| queryFrontend.query.config | string | `"backend: 127.0.0.1:3200\n"` | |
878882
| queryFrontend.query.enabled | bool | `false` | Required for grafana version <7.5 for compatibility with jaeger-ui. Doesn't work on ARM arch |
879883
| queryFrontend.query.extraArgs | list | `[]` | Additional CLI args for tempo-query pods |
880884
| queryFrontend.query.extraEnv | list | `[]` | Environment variables to add to the tempo-query pods |
@@ -913,7 +917,7 @@ The memcached default args are removed and should be provided manually. The sett
913917
| rollout_operator.securityContext.readOnlyRootFilesystem | bool | `true` | |
914918
| server.grpc_server_max_recv_msg_size | int | `4194304` | Max gRPC message size that can be received |
915919
| server.grpc_server_max_send_msg_size | int | `4194304` | Max gRPC message size that can be sent |
916-
| server.httpListenPort | int | `3100` | HTTP server listen host |
920+
| server.httpListenPort | int | `3200` | HTTP server listen host |
917921
| server.http_server_read_timeout | string | `"30s"` | Read timeout for HTTP server |
918922
| server.http_server_write_timeout | string | `"30s"` | Write timeout for HTTP server |
919923
| server.logFormat | string | `"logfmt"` | Log format. Can be set to logfmt (default) or json. |

charts/tempo-distributed/README.md.gotmpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ The command removes all the Kubernetes components associated with the chart and
4141

4242
A major chart version change indicates that there is an incompatible breaking change needing manual actions.
4343

44+
### From Chart versions < 1.41.0
45+
* Breaking Change *
46+
In order to be consistent with other projects and documentations, the default port has been changed from 3100 to 3200.
47+
4448
### From Chart versions < 1.33.0
4549
* Breaking Change *
4650
In order to reduce confusion, the overrides configurations have been renamed as below.

charts/tempo-distributed/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ configMap:
227227
Internal servers http listen port - derived from Loki default
228228
*/}}
229229
{{- define "tempo.serverHttpListenPort" -}}
230-
{{ (((.Values.tempo).structuredConfig).server).http_listen_port | default "3100" }}
230+
{{ (((.Values.tempo).structuredConfig).server).http_listen_port | default "3200" }}
231231
{{- end -}}
232232

233233
{{/*

charts/tempo-distributed/templates/compactor/deployment-compactor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ spec:
7070
imagePullPolicy: {{ .Values.tempo.image.pullPolicy }}
7171
name: compactor
7272
ports:
73-
- containerPort: 3100
73+
- containerPort: 3200
7474
name: http-metrics
7575
- containerPort: {{ include "tempo.memberlistBindPort" . }}
7676
name: http-memberlist

charts/tempo-distributed/templates/compactor/service-compactor.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ spec:
1212
type: ClusterIP
1313
ports:
1414
- name: http-metrics
15-
port: 3100
16-
targetPort: 3100
15+
port: 3200
16+
targetPort: 3200
1717
protocol: TCP
1818
selector:
1919
{{- include "tempo.selectorLabels" (dict "ctx" . "component" "compactor") | nindent 4 }}

charts/tempo-distributed/templates/distributor/deployment-distributor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ spec:
7575
- containerPort: {{ include "tempo.memberlistBindPort" . }}
7676
name: http-memberlist
7777
protocol: TCP
78-
- containerPort: 3100
78+
- containerPort: 3200
7979
name: http-metrics
8080
{{- if .Values.traces.jaeger.thriftCompact.enabled }}
8181
- containerPort: 6831

charts/tempo-distributed/templates/distributor/service-distributor-discovery.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
clusterIP: None
2020
ports:
2121
- name: http-metrics
22-
port: 3100
22+
port: 3200
2323
targetPort: http-metrics
2424
{{- if .Values.traces.jaeger.thriftCompact.enabled }}
2525
- name: distributor-jaeger-thrift-compact

charts/tempo-distributed/templates/distributor/service-distributor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
ipFamilyPolicy: {{ .Values.tempo.service.ipFamilyPolicy }}
2121
ports:
2222
- name: http-metrics
23-
port: 3100
23+
port: 3200
2424
targetPort: http-metrics
2525
- name: grpc
2626
port: 9095

charts/tempo-distributed/templates/enterprise-federation-frontend/deployment-federation-frontend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ spec:
6969
imagePullPolicy: {{ .Values.tempo.image.pullPolicy }}
7070
name: federation-frontend
7171
ports:
72-
- containerPort: 3100
72+
- containerPort: 3200
7373
name: http-metrics
7474
{{- if or .Values.global.extraEnv .Values.enterpriseFederationFrontend.extraEnv }}
7575
env:

0 commit comments

Comments
 (0)