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

Merge branch 'youngsu_kim-main-patch-53844' into 'main'

Add shm and replace rstudio image by the prp one

See merge request csusb-hpc!21
parents 3a83d745 b535870f
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,11 @@ class MySpawner(KubeSpawner):
{
'name': 'csusb-hpc-share',
'mountPath': '/home/jovyan/shared',
}
},
{
'name': 'shm-volume',
'mountPath': '/dev/shm',
},
]
self.volumes = [
{
......@@ -79,6 +83,12 @@ class MySpawner(KubeSpawner):
'claimName': 'csusb-hpc-share'
}
},
{
'name': 'shm-volume',
'emptyDir': {
'medium': 'Memory'
}
}
]
return options
......@@ -107,12 +117,6 @@ class MySpawner(KubeSpawner):
},
{
'display_name': 'Stack R-Studio',
'kubespawner_override': {
'image_spec': 'gitlab-registry.nrp-nautilus.io/youngsu_kim/csusb-jupyter-stack/stack-rstudio-becerra-class',
}
},
{
'display_name': 'Stack R-Studio (Test)',
'kubespawner_override': {
'image_spec': 'localhost:30081/prp/jupyter-stack/r-studio',
}
......
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