Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rucio extension configuration #178

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions swan-cern/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ $ ssh swan-spare003.cern.ch
$ /srv/swan-k8s/source/utils/deploy_k8s.sh --env <qa|prod>
```

To connect to a Rucio instance for data management, configure `jupyterhub.singleuser.extraEnv` according to the [documentation](https://github.com/rucio/jupyterlab-extension/blob/master/CONFIGURATION.md). The default is to connect to the Rucio [VRE instance](https://github.com/vre-hub) at CERN in *download* mode.

### Monitoring

Cluster Monitoring
Expand Down
17 changes: 16 additions & 1 deletion swan-cern/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,22 @@ swan:
guarantee: 1
extraEnv:
# Enable HTCondor service configuration for CERN in the user image
CERN_HTCONDOR: "true"
CERN_HTCONDOR: "true"
# Rucio configuration
RUCIO_MODE: "download"
RUCIO_WILDCARD_ENABLED: "1"
RUCIO_BASE_URL: "https://vre-rucio.cern.ch"
RUCIO_AUTH_URL: "https://vre-rucio-auth.cern.ch"
RUCIO_WEBUI_URL: "https://vre-rucio-ui.cern.ch"
RUCIO_DISPLAY_NAME: "CERN VRE"
RUCIO_NAME: "vre"
RUCIO_SITE_NAME: "CERN"
RUCIO_VOMS_ENABLED: "1"
RUCIO_VOMS_VOMSES_PATH: "/etc/vomses"
RUCIO_VOMS_CERTDIR_PATH: "/etc/grid-security/certificates"
RUCIO_VOMS_VOMSDIR_PATH: "/etc/grid-security/vomsdir"
RUCIO_CA_CERT: "/opt/rucio/rucio_ca.pem"
RUCIO_DEFAULT_INSTANCE: "vre"
scheduling:
userPods:
nodeAffinity:
Expand Down