Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tempo] added ingester pvc labels #3065

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
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.9.6
version: 1.11.0
appVersion: 2.4.1
engine: gotpl
home: https://grafana.com/docs/tempo/latest/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ spec:
annotations:
{{- toYaml . | nindent 10 }}
{{- end }}
{{- with .Values.ingester.persistence.labels }}
labels:
{{- toYaml . | nindent 10 }}
{{- end }}
name: data
spec:
accessModes:
Expand Down
2 changes: 2 additions & 0 deletions charts/tempo-distributed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@ ingester:
storageClass: null
# -- Annotations for ingester's persist volume claim
annotations: {}
# -- Labels for ingester's persist volume claim
labels: {}
config:
# -- Number of copies of spans to store in the ingester ring
replication_factor: 3
Expand Down