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
pod:
securityContext:
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
runAsUser: ${APP_UID}
runAsGroup: ${APP_GID}
fsGroup: ${APP_GID}
fsGroupChangePolicy: "OnRootMismatch"
service:

View file

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