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 <stefan.lobbenmeier@objego.de>
  • Loading branch information
StefanLobbenmeierObjego committed Aug 8, 2024
1 parent 933cb5b commit 08be426
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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
4 changes: 2 additions & 2 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
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 08be426

Please sign in to comment.