Skip to content

Commit

Permalink
Fix tempo permissions after update to v1.9.0
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Lobbenmeier <[email protected]>
  • Loading branch information
StefanLobbenmeierObjego committed Aug 8, 2024
1 parent 933cb5b commit 49be3d1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/tempo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: tempo
description: Grafana Tempo Single Binary Mode
type: application
version: 1.10.2
version: 1.10.3
appVersion: 2.5.0
engine: gotpl
home: https://grafana.net
Expand Down
6 changes: 3 additions & 3 deletions charts/tempo/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tempo

![Version: 1.10.2](https://img.shields.io/badge/Version-1.10.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
![Version: 1.10.3](https://img.shields.io/badge/Version-1.10.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)

Grafana Tempo Single Binary Mode

Expand Down Expand Up @@ -36,7 +36,7 @@ Grafana Tempo Single Binary Mode
| podLabels | object | `{}` | Pod (extra) Labels |
| priorityClassName | string | `nil` | The name of the PriorityClass |
| replicas | int | `1` | Define the amount of instances |
| securityContext | object | `{}` | securityContext for container |
| securityContext | object | `{"fsGroup":10001,"runAsGroup":10001,"runAsNonRoot":true,"runAsUser":10001}` | securityContext for container |
| service.annotations | object | `{}` | |
| service.labels | object | `{}` | |
| service.targetPort | string | `""` | |
Expand Down Expand Up @@ -148,4 +148,4 @@ and [1.5 -> 2.0 upgrade guide](https://grafana.com/docs/tempo/latest/setup/upgra

Upgrading from pre 0.7.0 will, by default, move your trace storage from `/tmp/tempo/traces` to `/var/tempo/traces`.
This will cause Tempo to lose trace history. If you would like to retain history just copy the contents from the
old folder to the new.
old folder to the new.
10 changes: 5 additions & 5 deletions charts/tempo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,11 @@ tempoQuery:
# readOnlyRootFilesystem: false # fails if true, do not enable

# -- securityContext for container
securityContext: {}
# runAsUser: 65532
# runAsGroup: 65532
# fsGroup: 65532
# runAsNonRoot: true
securityContext:
runAsUser: 10001
runAsGroup: 10001
fsGroup: 10001
runAsNonRoot: true

serviceAccount:
# -- Specifies whether a ServiceAccount should be created
Expand Down

0 comments on commit 49be3d1

Please sign in to comment.