Skip to content

Commit c01e401

Browse files
authored
[tempo-distributed] fix missing namespace field (#3820)
1 parent 665f0bf commit c01e401

14 files changed

+14
-2
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.46.1
5+
version: 1.46.2
66
appVersion: 2.8.1
77
engine: gotpl
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-distributed/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tempo-distributed
22

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

55
Grafana Tempo in MicroService mode
66

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: {{ include "tempo.pdb.apiVersion" . }}
44
kind: PodDisruptionBudget
55
metadata:
66
name: {{ include "tempo.resourceName" $dict }}
7+
namespace: {{ .Release.Namespace }}
78
labels:
89
{{- include "tempo.labels" $dict | nindent 4 }}
910
spec:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ apiVersion: v1
22
kind: Service
33
metadata:
44
name: {{ template "tempo.resourceName" (dict "ctx" . "component" "compactor") }}
5+
namespace: {{ .Release.Namespace }}
56
labels:
67
{{- include "tempo.labels" (dict "ctx" . "component" "compactor") | nindent 4 }}
78
{{- with .Values.compactor.service.annotations }}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: {{ $apiVersion }}
44
kind: HorizontalPodAutoscaler
55
metadata:
66
name: {{ include "tempo.resourceName" (dict "ctx" . "component" "distributor") }}
7+
namespace: {{ .Release.Namespace }}
78
labels:
89
{{- include "tempo.labels" (dict "ctx" . "component" "distributor") | nindent 4 }}
910
spec:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: {{ include "tempo.pdb.apiVersion" . }}
44
kind: PodDisruptionBudget
55
metadata:
66
name: {{ include "tempo.resourceName" $dict }}
7+
namespace: {{ .Release.Namespace }}
78
labels:
89
{{- include "tempo.labels" $dict | nindent 4 }}
910
spec:

charts/tempo-distributed/templates/ingester/hpa.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: {{ $apiVersion }}
44
kind: HorizontalPodAutoscaler
55
metadata:
66
name: {{ include "tempo.resourceName" (dict "ctx" . "component" "ingester") }}
7+
namespace: {{ .Release.Namespace }}
78
labels:
89
{{- include "tempo.labels" (dict "ctx" . "component" "ingester") | nindent 4 }}
910
spec:

charts/tempo-distributed/templates/ingester/poddisruptionbudget-ingester.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: {{ include "tempo.pdb.apiVersion" . }}
44
kind: PodDisruptionBudget
55
metadata:
66
name: {{ include "tempo.resourceName" $dict }}
7+
namespace: {{ .Release.Namespace }}
78
labels:
89
{{- include "tempo.labels" $dict | nindent 4 }}
910
spec:

charts/tempo-distributed/templates/memcached/poddisruptionbudget-memcached.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: {{ include "tempo.pdb.apiVersion" . }}
44
kind: PodDisruptionBudget
55
metadata:
66
name: {{ include "tempo.resourceName" $dict }}
7+
namespace: {{ .Release.Namespace }}
78
labels:
89
{{- include "tempo.labels" $dict | nindent 4 }}
910
spec:

charts/tempo-distributed/templates/querier/hpa.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apiVersion: {{ $apiVersion }}
44
kind: HorizontalPodAutoscaler
55
metadata:
66
name: {{ include "tempo.resourceName" (dict "ctx" . "component" "querier") }}
7+
namespace: {{ .Release.Namespace }}
78
labels:
89
{{- include "tempo.labels" (dict "ctx" . "component" "querier") | nindent 4 }}
910
spec:

0 commit comments

Comments
 (0)