Skip to content

Commit e882c61

Browse files
committed
Merge branch 'main' into bugfix-zone-annotations
2 parents f7efc2e + fba38b1 commit e882c61

File tree

5 files changed

+11
-2
lines changed

5 files changed

+11
-2
lines changed

charts/lgtm-distributed/Chart.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ apiVersion: v2
33
name: lgtm-distributed
44
description: Umbrella chart for a distributed Loki, Grafana, Tempo and Mimir stack
55
type: application
6-
version: 3.0.0
6+
version: 3.0.1
77
appVersion: "^12.1.1"
8+
deprecated: true
89

910
home: https://grafana.com/oss/
1011
icon: https://artifacthub.io/image/b4fed1a7-6c8f-4945-b99d-096efa3e4116

charts/lgtm-distributed/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# lgtm-distributed
22

3-
![Version: 3.0.0](https://img.shields.io/badge/Version-3.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: ^12.1.1](https://img.shields.io/badge/AppVersion-^12.1.1-informational?style=flat-square)
3+
> **:exclamation: This Helm Chart is deprecated!**
4+
5+
![Version: 3.0.1](https://img.shields.io/badge/Version-3.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: ^12.1.1](https://img.shields.io/badge/AppVersion-^12.1.1-informational?style=flat-square)
46

57
Umbrella chart for a distributed Loki, Grafana, Tempo and Mimir stack
68

charts/tempo-distributed/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,7 @@ The memcached default args are removed and should be provided manually. The sett
603603
| ingester.image.repository | string | `nil` | Docker image repository for the ingester image. Overrides `tempo.image.repository` |
604604
| ingester.image.tag | string | `nil` | Docker image tag for the ingester image. Overrides `tempo.image.tag` |
605605
| ingester.initContainers | list | `[]` | |
606+
| ingester.labels | object | `{}` | Labels for the ingester StatefulSet |
606607
| ingester.nodeSelector | object | `{}` | Node selector for ingester pods |
607608
| ingester.persistence | object | `{"annotations":{},"enabled":false,"inMemory":false,"labels":{},"size":"10Gi","storageClass":null}` | Persistence configuration for ingester |
608609
| ingester.persistence.annotations | object | `{}` | Annotations for ingester's persist volume claim |

charts/tempo-distributed/templates/ingester/_helpers-ingester.tpl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ app.kubernetes.io/part-of: memberlist
8787
app.kubernetes.io/version: {{ .ctx.Chart.AppVersion | quote }}
8888
{{- end }}
8989
app.kubernetes.io/managed-by: {{ .ctx.Release.Service }}
90+
{{- with .ctx.Values.ingester.labels }}
91+
{{ toYaml . }}
92+
{{- end }}
9093
{{- end -}}
9194
{{/*
9295
Resource name template

charts/tempo-distributed/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ rbac:
135135
ingester:
136136
# -- Annotations for the ingester StatefulSet
137137
annotations: {}
138+
# -- Labels for the ingester StatefulSet
139+
labels: {}
138140
# -- Number of replicas for the ingester
139141
replicas: 3
140142
# -- hostAliases to add

0 commit comments

Comments
 (0)