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
|
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:
|
||||||
|
|
|
@ -25,3 +25,5 @@ spec:
|
||||||
substitute:
|
substitute:
|
||||||
APP: *app
|
APP: *app
|
||||||
VOLSYNC_CAPACITY: 1Gi
|
VOLSYNC_CAPACITY: 1Gi
|
||||||
|
APP_GID: "1000"
|
||||||
|
APP_UID: "1000"
|
||||||
|
|
Loading…
Reference in a new issue