Skip to content
Snippets Groups Projects
Commit 8cc3b9e6 authored by Stefano Alberto Russo's avatar Stefano Alberto Russo
Browse files

Bugfixes in the populate.

parent af8f51e7
Branches
No related tags found
No related merge requests found
......@@ -6,4 +6,4 @@ if [ ! -d ./services ]; then
exit 1
fi
rosetta/shell webapp "cd /opt/code && source /env.sh && source /db_conf.sh && BACKEND_LOG_LEVEL=ERROR python3 manage.py core_app_populate"
rosetta/shell webapp "cd /opt/code && source /env.sh && BACKEND_LOG_LEVEL=ERROR python3 manage.py core_app_populate"
......@@ -272,7 +272,7 @@ to provide help, news and informations on your deployment. Or you can just ignor
# Demo standalone computing plus conf
demo_singlenode_computing = Computing.objects.create(name = 'Demo Standalone',
demo_standalone_computing = Computing.objects.create(name = 'Demo Standalone',
description = 'A demo standalone computing resource.',
type = 'standalone',
arch = 'amd64',
......@@ -283,8 +283,12 @@ to provide help, news and informations on your deployment. Or you can just ignor
conf = {'host': 'standaloneworker'},
container_engines = ['podman','singularity'])
# Add testuser extra conf for this computing resource
testuser.profile.add_extra_conf(conf_type = 'computing_user', object=demo_standalone_computing, value= 'testuser')
# Demo standalone platform computing plus conf
demo_singlenode_computing = Computing.objects.create(name = 'Demo Standalone Platform',
demo_standalone_computing_platform = Computing.objects.create(name = 'Demo Standalone Platform',
description = 'A demo standalone computing resource access as platform.',
type = 'standalone',
arch = 'amd64',
......@@ -295,8 +299,6 @@ to provide help, news and informations on your deployment. Or you can just ignor
conf = {'host': 'standaloneworker', 'user': 'rosetta'},
container_engines = ['podman','singularity'])
# Add testuser extra conf for this computing resource
testuser.profile.add_extra_conf(conf_type = 'computing_user', object=demo_singlenode_computing, value= 'testuser')
# Demo cluster computing plus conf
demo_slurm_computing = Computing.objects.create(name = 'Demo Cluster',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment