We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50b46bf commit e218550Copy full SHA for e218550
config/clusters/maap/staging.values.yaml
@@ -20,12 +20,14 @@ jupyterhub:
20
command:
21
- sh
22
- -c
23
+ # create the shared group directories and fix ownership
24
+ # so that they are owned by the user
25
- >
26
id &&
27
+ mkdir -p /home/jovyan/shared-group/CPU_L &&
28
+ mkdir -p /home/jovyan/shared-group/GPU_T4 &&
29
chown 1000:1000 /home/jovyan /home/jovyan/shared /home/jovyan/shared-public &&
- if [ -d "/home/jovyan/shared-group" ] && [ "$(ls -A /home/jovyan/shared-group)" ]; then
- chown 1000:1000 /home/jovyan/shared-group/* || true;
- fi &&
30
+ chown 1000:1000 /home/jovyan/shared-group/* &&
31
ls -lhd /home/jovyan
32
securityContext:
33
runAsUser: 0
0 commit comments