diff --git a/charts/tempo-distributed/Chart.yaml b/charts/tempo-distributed/Chart.yaml index a0dd8f0187..bc14f9b5db 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.26.2 +version: 1.26.3 appVersion: 2.6.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 a584f620e0..98e0af3542 100755 --- a/charts/tempo-distributed/README.md +++ b/charts/tempo-distributed/README.md @@ -1,6 +1,6 @@ # tempo-distributed -![Version: 1.26.2](https://img.shields.io/badge/Version-1.26.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.6.0](https://img.shields.io/badge/AppVersion-2.6.0-informational?style=flat-square) +![Version: 1.26.3](https://img.shields.io/badge/Version-1.26.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.6.0](https://img.shields.io/badge/AppVersion-2.6.0-informational?style=flat-square) Grafana Tempo in MicroService mode @@ -412,8 +412,8 @@ The memcached default args are removed and should be provided manually. The sett | enterpriseGateway.image.tag | string | `nil` | Docker image tag for the enterpriseGateway image. Overrides `tempo.image.tag` | | enterpriseGateway.ingress.annotations | object | `{}` | Annotations for the enterprise-gateway ingress | | enterpriseGateway.ingress.enabled | bool | `false` | Specifies whether an ingress for the enterprise-gateway should be created | -| enterpriseGateway.ingress.hosts | list | `[{"host":"gateway.gem.example.com","paths":[{"path":"/"}]}]` | Hosts configuration for the enterprise-gateway ingress | -| enterpriseGateway.ingress.tls | list | `[{"hosts":["gateway.gem.example.com"],"secretName":"gem-gateway-tls"}]` | TLS configuration for the enterprise-gateway ingress | +| enterpriseGateway.ingress.hosts | list | `[{"host":"gateway.get.example.com","paths":[{"path":"/"}]}]` | Hosts configuration for the enterprise-gateway ingress | +| enterpriseGateway.ingress.tls | list | `[{"hosts":["gateway.get.example.com"],"secretName":"get-gateway-tls"}]` | TLS configuration for the enterprise-gateway ingress | | enterpriseGateway.initContainers | list | `[]` | | | enterpriseGateway.nodeSelector | object | `{}` | | | enterpriseGateway.persistence.subPath | string | `nil` | | diff --git a/charts/tempo-distributed/templates/NOTES.txt b/charts/tempo-distributed/templates/NOTES.txt index 22b5fbc08f..cadf0d5ffb 100644 --- a/charts/tempo-distributed/templates/NOTES.txt +++ b/charts/tempo-distributed/templates/NOTES.txt @@ -13,9 +13,25 @@ Installed components: * federation-frontend {{- end }} * compactor +{{- if .Values.metricsGenerator.enabled }} +* metrics-generator +{{- end }} {{- if .Values.memcached.enabled }} * memcached {{- end }} +{{- if .Values.memcachedExporter.enabled }} +* memcached-exporter +{{- end }} {{- if .Values.gateway.enabled }} * gateway -{{- end }} \ No newline at end of file +{{- end }} +{{- if .Values.minio.enabled }} +* minio +{{- end }} +{{- if .Values.rollout_operator.enabled }} +* rollout-operator +{{- end }} +{{- if .Values.enterprise.enabled }} +* admin_api +* enterprise-gateway +{{- end }} diff --git a/charts/tempo-distributed/values.yaml b/charts/tempo-distributed/values.yaml index 0446057df3..550b6bee51 100755 --- a/charts/tempo-distributed/values.yaml +++ b/charts/tempo-distributed/values.yaml @@ -2338,16 +2338,16 @@ enterpriseGateway: annotations: {} # -- Hosts configuration for the enterprise-gateway ingress hosts: - - host: gateway.gem.example.com + - host: gateway.get.example.com paths: - path: / # -- pathType (e.g. ImplementationSpecific, Prefix, .. etc.) might also be required by some Ingress Controllers # pathType: Prefix # -- TLS configuration for the enterprise-gateway ingress tls: - - secretName: gem-gateway-tls + - secretName: get-gateway-tls hosts: - - gateway.gem.example.com + - gateway.get.example.com # -- Create extra manifests via values. extraObjects: []