Update UID/GID to be more consistent.

This commit is contained in:
Joseph Hanson 2024-02-28 20:35:27 -06:00
parent 7204d65f38
commit 52c8e2fcb3
2 changed files with 5 additions and 3 deletions

View file

@ -36,9 +36,9 @@ spec:
memory: 1Gi memory: 1Gi
pod: pod:
securityContext: securityContext:
runAsUser: 1000 runAsUser: ${APP_UID}
runAsGroup: 1000 runAsGroup: ${APP_GID}
fsGroup: 1000 fsGroup: ${APP_GID}
fsGroupChangePolicy: "OnRootMismatch" fsGroupChangePolicy: "OnRootMismatch"
service: service:

View file

@ -25,3 +25,5 @@ spec:
substitute: substitute:
APP: *app APP: *app
VOLSYNC_CAPACITY: 1Gi VOLSYNC_CAPACITY: 1Gi
APP_GID: "1000"
APP_UID: "1000"