You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have recently tried upgrading the tempo distributed from 2.4.1 to 2.6.
One of the breaking change is the change in the ownership of the directory in var/tempo to user and group tempo.
After the upgrade I can see the ownership is only for the group.
I in the helm values file, I have added the securityContext and podSecurityContext.
Snippet of the config is mentioned below.
Also, just adding the securityContext did not update the ownership.
Please advise if there is anything else I have missed for the update.
I have followed the discussion on PR: #2265
tempo:
image:
# -- The Docker registry
registry: docker.io
# -- Optional list of imagePullSecrets. Overrides `global.image.pullSecrets`
pullSecrets: []
# -- Docker image repository
repository: grafana/tempo
# -- Overrides the image tag whose default is the chart's appVersion
tag: null
pullPolicy: IfNotPresent
readinessProbe:
httpGet:
path: /ready
port: http-metrics
initialDelaySeconds: 30
timeoutSeconds: 1
# -- Global labels for all tempo pods
podLabels: {}
# -- Common annotations for all pods
podAnnotations: {}
# -- SecurityContext holds container-level security attributes and common container settings
securityContext:
runAsUser: 10001
runAsGroup: 10001
fsGroup: 10001
runAsNonRoot: true
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
# -- podSecurityContext holds pod-level security attributes and common container settings
podSecurityContext:
fsGroup: 10001
runAsGroup: 10001
runAsUser: 10001
The text was updated successfully, but these errors were encountered:
Hi All,
I have recently tried upgrading the tempo distributed from 2.4.1 to 2.6.
One of the breaking change is the change in the ownership of the directory in var/tempo to user and group tempo.
After the upgrade I can see the ownership is only for the group.
I in the helm values file, I have added the securityContext and podSecurityContext.
Snippet of the config is mentioned below.
Also, just adding the securityContext did not update the ownership.
Please advise if there is anything else I have missed for the update.
I have followed the discussion on PR: #2265
The text was updated successfully, but these errors were encountered: