Skip to content
Snippets Groups Projects

Dev

Merged Ihli, Monica requested to merge dev into prod
1 file
+ 12
1
Compare changes
  • Side-by-side
  • Inline
+ 12
1
#==============================================================================
#===============================================================================
# profiles.py is called by additional_functions.py
# profiles.py is called by additional_functions.py
# Builds different types of profiles which can be passed to the spawner
# Builds different types of profiles which can be passed to the spawner
# Docs: https://jupyterhub-kubespawner.readthedocs.io/en/latest/spawner.html
# Docs: https://jupyterhub-kubespawner.readthedocs.io/en/latest/spawner.html
@@ -108,6 +108,13 @@ internal_volumes_list = [
@@ -108,6 +108,13 @@ internal_volumes_list = [
"server": "192.168.2.4"
"server": "192.168.2.4"
}
}
},
},
 
{
 
"name": "project",
 
"nfs": {
 
"path": "/export/data/project",
 
"server": "192.168.2.4"
 
}
 
},
{
{
"name": "var-lib-sss",
"name": "var-lib-sss",
"hostPath": {
"hostPath": {
@@ -139,6 +146,10 @@ internal_volume_mounts_list = [
@@ -139,6 +146,10 @@ internal_volume_mounts_list = [
"name": "user-scratch",
"name": "user-scratch",
"mountPath": "/data/home"
"mountPath": "/data/home"
},
},
 
{
 
"name": "project",
 
"mountPath": "/data/project"
 
},
{
{
"name": "var-lib-sss",
"name": "var-lib-sss",
"mountPath": "/var/lib/sss"
"mountPath": "/var/lib/sss"
Loading