Skip to content

Commit

Permalink
hardcode jupyter config 2
Browse files Browse the repository at this point in the history
  • Loading branch information
garciagenrique committed Jun 7, 2024
1 parent f1f025b commit 4a7d080
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vre-singleuser-interTwin_dev/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ def write_jupyterlab_config():
"rucio_auth_url": "https://rucio-intertwin-testbed-auth.desy.de",
"rucio_ca_cert": "/opt/conda/lib/python3.9/site-packages/certifi/cacert.pem",
"site_name": "VEGA",
"voms_enabled": "0",
"voms_enabled": 0,
"destination_rse": "VEGA-DCACHE",
"rse_mount_path": "/dcache/sling.si/projects/intertwin",
"path_begins_at": "4",
"path_begins_at": 4,
"mode": "replica",
# "mode": "download",
"wildcard_enabled": "true",
"wildcard_enabled": true,
"oidc_auth": "env",
"oidc_env_name": "RUCIO_ACCESS_TOKEN"
}
Expand Down
24 changes: 24 additions & 0 deletions vre-singleuser-interTwin_dev/test.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"RucioConfig": {
"instances": [
{
"name": "rucio-intertwin-testbed.desy.de",
"display_name": "interTwinRUCIO",
"rucio_base_url": "https://rucio-intertwin-testbed.desy.de",
"rucio_auth_url": "https://rucio-intertwin-testbed-auth.desy.de",
"rucio_ca_cert": "/opt/conda/lib/python3.9/site-packages/certifi/cacert.pem",
"site_name": "VEGA",
"voms_enabled": 0,
"destination_rse": "VEGA-DCACHE",
"rse_mount_path": "/dcache/sling.si/projects/intertwin",
"path_begins_at": 4,
"mode": "replica",
"wildcard_enabled": 1,
"oidc_auth": "env",
"oidc_env_name": "RUCIO_ACCESS_TOKEN"
}
],
"default_instance": "rucio-intertwin-testbed.desy.de",
"default_auth_type": "oidc"
}
}

0 comments on commit 4a7d080

Please sign in to comment.