diff --git a/charts/tempo-distributed/Chart.yaml b/charts/tempo-distributed/Chart.yaml index aeadbb0a74..8fc74e85d6 100644 --- a/charts/tempo-distributed/Chart.yaml +++ b/charts/tempo-distributed/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: tempo-distributed description: Grafana Tempo in MicroService mode type: application -version: 1.31.0 +version: 1.31.1 appVersion: 2.7.0 engine: gotpl home: https://grafana.com/docs/tempo/latest/ diff --git a/charts/tempo-distributed/README.md b/charts/tempo-distributed/README.md index 1377b7301f..2f1c115f0b 100755 --- a/charts/tempo-distributed/README.md +++ b/charts/tempo-distributed/README.md @@ -1,6 +1,6 @@ # tempo-distributed -![Version: 1.31.0](https://img.shields.io/badge/Version-1.31.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square) +![Version: 1.31.1](https://img.shields.io/badge/Version-1.31.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square) Grafana Tempo in MicroService mode @@ -555,6 +555,7 @@ The memcached default args are removed and should be provided manually. The sett | ingester.image.repository | string | `nil` | Docker image repository for the ingester image. Overrides `tempo.image.repository` | | ingester.image.tag | string | `nil` | Docker image tag for the ingester image. Overrides `tempo.image.tag` | | ingester.initContainers | list | `[]` | | +| ingester.maxUnavailable | int | `1` | Override Pod Disruption Budget maxUnavailable with a static value | | ingester.nodeSelector | object | `{}` | Node selector for ingester pods | | ingester.persistence | object | `{"annotations":{},"enabled":false,"inMemory":false,"size":"10Gi","storageClass":null}` | Persistence configuration for ingester | | ingester.persistence.annotations | object | `{}` | Annotations for ingester's persist volume claim | diff --git a/charts/tempo-distributed/templates/ingester/pdb.yaml b/charts/tempo-distributed/templates/ingester/pdb.yaml deleted file mode 100644 index 01c9db0dd0..0000000000 --- a/charts/tempo-distributed/templates/ingester/pdb.yaml +++ /dev/null @@ -1,14 +0,0 @@ -{{- if .Values.podDisruptionBudget -}} -apiVersion: {{ include "tempo.pdb.apiVersion" . }} -kind: PodDisruptionBudget -metadata: - name: {{ include "tempo.resourceName" (dict "ctx" . "component" "ingester") }} - namespace: {{ .Release.Namespace }} - labels: - {{- include "tempo.labels" (dict "ctx" . "component" "ingester") | nindent 4 }} -spec: - selector: - matchLabels: - app: {{ include "tempo.resourceName" (dict "ctx" . "component" "ingester") }} -{{ toYaml .Values.podDisruptionBudget | indent 2 }} -{{- end }} diff --git a/charts/tempo-distributed/values.yaml b/charts/tempo-distributed/values.yaml index a81d3b33f0..a68e2d5d28 100755 --- a/charts/tempo-distributed/values.yaml +++ b/charts/tempo-distributed/values.yaml @@ -196,7 +196,7 @@ ingester: {{- include "tempo.selectorLabels" (dict "ctx" . "component" "ingester") | nindent 12 }} topologyKey: topology.kubernetes.io/zone # -- Override Pod Disruption Budget maxUnavailable with a static value - # maxUnavailable: 1 + maxUnavailable: 1 # -- Node selector for ingester pods nodeSelector: {} # -- Tolerations for ingester pods