diff --git a/charts/tempo-distributed/Chart.yaml b/charts/tempo-distributed/Chart.yaml index 885102256f..2683c7bfd1 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: 0.16.4 +version: 0.16.5 appVersion: 1.3.2 engine: gotpl home: https://grafana.com/docs/tempo/latest/ diff --git a/charts/tempo-distributed/README.md b/charts/tempo-distributed/README.md index b69e837ced..4e6c42e9ed 100644 --- a/charts/tempo-distributed/README.md +++ b/charts/tempo-distributed/README.md @@ -1,6 +1,6 @@ # tempo-distributed -![Version: 0.16.4](https://img.shields.io/badge/Version-0.16.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.2](https://img.shields.io/badge/AppVersion-1.3.2-informational?style=flat-square) +![Version: 0.16.5](https://img.shields.io/badge/Version-0.16.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.2](https://img.shields.io/badge/AppVersion-1.3.2-informational?style=flat-square) Grafana Tempo in MicroService mode @@ -244,6 +244,7 @@ The memcached default args are removed and should be provided manually. The sett | queryFrontend.resources | object | `{}` | Resource requests and limits for the query-frontend | | queryFrontend.service.annotations | object | `{}` | Annotations for queryFrontend service | | queryFrontend.service.type | string | `"ClusterIP"` | Type of service for the queryFrontend | +| queryFrontend.serviceDiscovery.annotations | object | `{}` | Annotations for queryFrontendDiscovery service | | queryFrontend.terminationGracePeriodSeconds | int | `30` | Grace period to allow the query-frontend to shutdown before it is killed | | queryFrontend.tolerations | list | `[]` | Tolerations for query-frontend pods | | rbac.create | bool | `false` | Specifies whether RBAC manifests should be created | diff --git a/charts/tempo-distributed/templates/query-frontend/service-query-frontend-discovery.yaml b/charts/tempo-distributed/templates/query-frontend/service-query-frontend-discovery.yaml index 0eeaa9061d..afb3b05920 100644 --- a/charts/tempo-distributed/templates/query-frontend/service-query-frontend-discovery.yaml +++ b/charts/tempo-distributed/templates/query-frontend/service-query-frontend-discovery.yaml @@ -5,7 +5,7 @@ metadata: namespace: {{ .Release.Namespace }} labels: {{- include "tempo.queryFrontendLabels" . | nindent 4 }} - {{- with .Values.queryFrontend.service.annotations }} + {{- with .Values.queryFrontend.serviceDiscovery.annotations }} annotations: {{ toYaml . | nindent 4 }} {{- end }} diff --git a/charts/tempo-distributed/values.yaml b/charts/tempo-distributed/values.yaml index 337724d4fc..44e524d477 100644 --- a/charts/tempo-distributed/values.yaml +++ b/charts/tempo-distributed/values.yaml @@ -313,6 +313,9 @@ queryFrontend: annotations: {} # -- Type of service for the queryFrontend type: ClusterIP + serviceDiscovery: + # -- Annotations for queryFrontendDiscovery service + annotations: {} # -- The name of the PriorityClass for query-frontend pods priorityClassName: null # -- Labels for queryFrontend pods