commit | 2759eb7a5471ca9b524a757bad8527fbcfbab467 | [log] [tgz] |
---|---|---|
author | Piotr Dobrowolski <informatic@hackerspace.pl> | Sun Jan 31 20:07:29 2021 +0100 |
committer | Piotr Dobrowolski <informatic@hackerspace.pl> | Sun Jan 31 20:07:29 2021 +0100 |
tree | 9f2b19f7372dc3c3ba3bd72e4a3608be9c1f6d76 | |
parent | babcb8017fe1ad592f5932470a80d126354f373e [diff] |
kube/redis: fix /data partition permissions This has been encountered when introducing redis in our production matrix deployment. /data partition is owned by root:root by default otherwise. Change-Id: Ic148ff25837c6e8da394a5124556481343ea2873
diff --git a/kube/redis.libsonnet b/kube/redis.libsonnet index e596ac2..6c69d2b 100644 --- a/kube/redis.libsonnet +++ b/kube/redis.libsonnet
@@ -81,6 +81,8 @@ }, securityContext: { runAsUser: 100, + runAsGroup: 101, + fsGroup: 101, }, }, },