🧑‍💻(devx) revert securityContext on dev Tilt stack

The securityContext and podSecurityContext were harming hot reloading
on the dev stack. The file permission system prevented source updates
because the user running the image was not root.
This commit is contained in:
lebaudantoine
2026-05-30 14:11:58 +02:00
committed by aleb_the_flash
parent fc17c410ae
commit 7f817e2c0a
+6 -8
View File
@@ -1,17 +1,15 @@
.podSecurityContext: &podSecurityContext
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
fsGroupChangePolicy: "OnRootMismatch"
runAsNonRoot: true
runAsUser: 0
runAsGroup: 0
fsGroup: 0
runAsNonRoot: false
seccompProfile:
type: RuntimeDefault
.securityContext: &securityContext
allowPrivilegeEscalation: false
allowPrivilegeEscalation: true
capabilities:
drop:
- ALL
drop: []
frontend:
podSecurityContext: *podSecurityContext