Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.52.3
version: 1.53.0
appVersion: 2.9.0
engine: gotpl
home: https://grafana.com/docs/tempo/latest/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ spec:
{{- end }}
{{- if .Values.queryFrontend.query.enabled }}
- args:
- -config=/conf/tempo.yaml
- -config=/conf/tempo-query.yaml
{{- with .Values.queryFrontend.query.extraArgs }}
{{- toYaml . | nindent 12 }}
{{- end }}
Expand All @@ -129,10 +129,8 @@ spec:
imagePullPolicy: {{ .Values.tempo.image.pullPolicy }}
name: tempo-query
ports:
- containerPort: {{ .Values.queryFrontend.service.port }}
name: jaeger-ui
- containerPort: 16687
name: jaeger-metrics
- containerPort: 7777
name: tempo-query
{{- with .Values.queryFrontend.query.extraEnv }}
env:
{{- toYaml . | nindent 12 }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and .Values.queryFrontend.query.enabled .Values.queryFrontend.ingress.enabled -}}
{{- if .Values.queryFrontend.ingress.enabled -}}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there any reason to change this?

{{ $dict := dict "ctx" . "component" "query-frontend" }}
{{- $ingressApiIsStable := eq (include "tempo.ingress.isStable" .) "true" -}}
{{- $ingressSupportsIngressClassName := eq (include "tempo.ingress.supportsIngressClassName" .) "true" -}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,11 @@ spec:
appProtocol: {{ .Values.queryFrontend.appProtocol.grpc }}
{{- end }}
{{- if .Values.queryFrontend.query.enabled }}
- name: tempo-query-jaeger-ui
port: {{ .Values.queryFrontend.service.port }}
targetPort: {{ .Values.queryFrontend.service.port }}
- name: tempo-query-metrics
port: 16687
targetPort: jaeger-metrics
- name: tempo-query
port: 7777
targetPort: tempo-query
protocol: TCP
appProtocol: grpc
{{- end }}
publishNotReadyAddresses: true
selector:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@ spec:
appProtocol: {{ .Values.queryFrontend.appProtocol.grpc }}
{{- end }}
{{- if .Values.queryFrontend.query.enabled }}
- name: tempo-query-jaeger-ui
port: {{ .Values.queryFrontend.service.port }}
targetPort: {{ .Values.queryFrontend.service.port }}
- name: tempo-query-metrics
port: 16687
targetPort: jaeger-metrics
- name: tempo-query
port: 7777
targetPort: tempo-query
protocol: TCP
appProtocol: grpc
{{- end }}
{{- if .Values.queryFrontend.service.loadBalancerIP }}
loadBalancerIP: {{ .Values.queryFrontend.service.loadBalancerIP }}
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion charts/tempo-distributed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ queryFrontend:
tag: null
service:
# -- Port of the query-frontend service
port: 16686
port: 3200
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should it not be 7777?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If it should, can you use this value in the templates instead to avoid magic numbers?

# -- Annotations for queryFrontend service
annotations: {}
# -- Labels for queryFrontend service
Expand Down