Update UID/GID to be more consistent.
This commit is contained in:
parent
7204d65f38
commit
52c8e2fcb3
2 changed files with 5 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -25,3 +25,5 @@ spec:
|
|||
substitute:
|
||||
APP: *app
|
||||
VOLSYNC_CAPACITY: 1Gi
|
||||
APP_GID: "1000"
|
||||
APP_UID: "1000"
|
||||
|
|
Loading…
Reference in a new issue