Skip to content

Commit 9b8b359

Browse files
TheRealNoobclaude
andauthored
[tempo-vulture] fix annotation indentation in deployment template (grafana-community#87)
The deployment template used `indent 4` instead of `nindent 4` for annotations, which produced invalid YAML when `.Values.annotations` was set. Switch to `nindent 4` to match the rest of the template. Signed-off-by: TheRealNoob <mike1118@live.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 99decf5 commit 9b8b359

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

charts/tempo-vulture/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-vulture
33
description: Grafana Tempo Vulture - A tool to monitor Tempo performance.
44
type: application
5-
version: 0.12.3
5+
version: 0.12.4
66
# renovate: docker=docker.io/grafana/tempo-vulture
77
appVersion: 2.10.0
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-vulture/README.md

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

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

55
Grafana Tempo Vulture - A tool to monitor Tempo performance.
66

charts/tempo-vulture/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
{{- include "tempo-vulture.labels" . | nindent 4 }}
77
{{- with .Values.annotations }}
88
annotations:
9-
{{- toYaml . | indent 4 }}
9+
{{- toYaml . | nindent 4 }}
1010
{{- end }}
1111
spec:
1212
minReadySeconds: 10

0 commit comments

Comments
 (0)