Skip to content
Snippets Groups Projects
Commit 3f086c8f authored by Youngsu Kim's avatar Youngsu Kim
Browse files

Fix missing shared folder (PVC csusb-hpc-share)

parent d3848b5c
No related merge requests found
......@@ -60,6 +60,10 @@ class MySpawner(KubeSpawner):
{
'name': 'volume-{username}',
'mountPath': '/home/jovyan',
},
{
'name': 'csusb-hpc-share',
'mountPath': '/home/jovyan/shared',
}
]
self.volumes = [
......@@ -68,7 +72,13 @@ class MySpawner(KubeSpawner):
'persistentVolumeClaim': {
'claimName': 'claim-{username}'
}
}
},
{
'name': 'csusb-hpc-share',
'persistentVolumeClaim': {
'claimName': 'csusb-hpc-share'
}
},
]
return options
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment