diff --git a/charts/tempo/Chart.yaml b/charts/tempo/Chart.yaml index f8461179f0..681ebbe197 100644 --- a/charts/tempo/Chart.yaml +++ b/charts/tempo/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: tempo description: Grafana Tempo Single Binary Mode type: application -version: 1.16.0 +version: 1.17.0 appVersion: 2.6.1 engine: gotpl home: https://grafana.net diff --git a/charts/tempo/README.md b/charts/tempo/README.md index 9a9947c722..5ab8e69317 100644 --- a/charts/tempo/README.md +++ b/charts/tempo/README.md @@ -1,6 +1,6 @@ # tempo -![Version: 1.16.0](https://img.shields.io/badge/Version-1.16.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.6.1](https://img.shields.io/badge/AppVersion-2.6.1-informational?style=flat-square) +![Version: 1.17.0](https://img.shields.io/badge/Version-1.17.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.6.1](https://img.shields.io/badge/AppVersion-2.6.1-informational?style=flat-square) Grafana Tempo Single Binary Mode @@ -19,6 +19,7 @@ Grafana Tempo Single Binary Mode | extraVolumes | list | `[]` | Volumes to add | | fullnameOverride | string | `""` | Overrides the chart's computed fullname | | global.commonLabels | object | `{}` | Common labels for all object directly managed by this chart. | +| hostAliases | list | `[]` | hostAliases to add | | labels | object | `{}` | labels for tempo | | nameOverride | string | `""` | Overrides the chart's name | | networkPolicy.allowExternal | bool | `true` | | diff --git a/charts/tempo/templates/statefulset.yaml b/charts/tempo/templates/statefulset.yaml index 0cdb9bd358..36224e6e41 100644 --- a/charts/tempo/templates/statefulset.yaml +++ b/charts/tempo/templates/statefulset.yaml @@ -52,6 +52,10 @@ spec: {{- end }} {{- end }} {{- end }} + {{- with .Values.hostAliases }} + hostAliases: + {{- toYaml . | nindent 8 }} + {{- end }} containers: - args: - -config.file=/conf/tempo.yaml diff --git a/charts/tempo/values.yaml b/charts/tempo/values.yaml index 8637a0dd05..77840070ad 100644 --- a/charts/tempo/values.yaml +++ b/charts/tempo/values.yaml @@ -331,7 +331,11 @@ affinity: {} # -- The name of the PriorityClass priorityClassName: null - +# -- hostAliases to add +hostAliases: [] +# - ip: 1.2.3.4 +# hostnames: +# - domain.tld networkPolicy: ## @param networkPolicy.enabled Enable creation of NetworkPolicy resources. Only Ingress traffic is filtered for now. ##