Dandihub provides a JupyterHub instance in the cloud to interact with the data stored in DANDI.
To use the hub, you will need to register for an account using the DANDI Web application. Note that Dandihub is not intended for significant computation, but provides a place to introspect Dandisets and to perform some analysis and visualization of data.
This information in this README is based on:
Note: The original MAST setup is now significantly outdated.
Follow the steps below to deploy DANDI JupyterHub.
Note: Be sure to perform all the operations in the same AWS zone
that you will use in group_vars/all
file. (US-east-2 Ohio)
-
Create an https certificate for your domain using AWS cert manager. It's free to attach this certificate to load balancers, and JupyterHub also allows proxy offloading to this certificate.
-
Create the GitHub OAuth App id/token: GitHub settings -> Developer settings -> Oauth Apps. We have done this via a bot GitHub user account (e.g. dandibot). You will need to set Homepage URL (e.g.,
https://hub.dandiarchive.org
) and the Authorization callback URL (e.g.https://hub.dandiarchive.org/hub/oauth_callback
). This can be set to a subdomain, just be sure to set this to the same value asingress
ingroup_vars/all
and also set up the CNAME route via Route 53. -
Set up an AWS CI instance with these authorized roles (see this blog post for more details):
- AmazonEC2FullAccess
- AmazonSQSFullAccess
- IAMFullAccess
- AmazonS3FullAccess
- AmazonVPCFullAccess
- AmazonElasticFileSystemFullAccess
- AmazonRoute53FullAccess
- AmazonEventBridgeFullAccess
-
Add the public dns name to the
dandi-info/hosts
file (This is an Ansible Inventory file.) -
SSH into the ec2 instance (using the pem key downloaded in previous step) and install git in the CI instance
sudo yum install git -y
-
Update the variables in
group_vars/all
-
Install ansible locally and create a password for ansible to encrypt some of the ansible variables:
openssl rand -hex 32 > ansible_password
-
Encrypt strings using ansible-vault
ansible-vault encrypt_string --vault-password-file ansible_password
This will prompt for input.
- Paste the string to encrypt without a carriage return
- Hit Ctrl-d twice
- Copy the encrypted string into the relevant section of
group_vars/all
- NOTE: Use bash rather than a non-standard shell to prevent truncation.
Required vault values:
- github_client_id (From GH OAuth app)
- github_client_secret (From GH OAuth app)
- aws_certificate_arn (From aws certificate manager)
- dummypass (a string password you can use for testing without GitHub authentication
by uncommenting the relevant dummypass options in `config.yaml.j2`)
- danditoken (used to authenticate github users against registered dandi users)
1. Also note that `namespace` has to be unique across any JH
instances created with this setup.
-
Ensure
dandi-info/z2jh.yaml
uses theig-policy
in the file. (This is not necessary to change if there is already an instance of the policy in AWS. If you need to createig-policy
use the following:``` { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "autoscaling:DescribeAutoScalingGroups", "autoscaling:DescribeAutoScalingInstances", "autoscaling:DescribeLaunchConfigurations", "autoscaling:DescribeTags", "autoscaling:SetDesiredCapacity", "autoscaling:TerminateInstanceInAutoScalingGroup", "ec2:DescribeLaunchTemplateVersions", "ec2:DescribeInstanceTypes" ], "Resource": "*" } ] } ```
-
Run the playbook!
ansible-playbook -i hosts z2jh.yml -v --vault-password-file ansible_password
-
To tear down:
ansible-playbook -i hosts teardown.yml -v --vault-password-file ansible_password -t all-fixtures
To remove kubernetes without removing shared EFS:
ansible-playbook -i hosts teardown.yml -v --vault-password-file ansible_password -t kubernetes
- Inside
z2jh-aws-ansible
, dorm -rf *
and thengit stash
. This will restore the submodule to its pre-modification step. - Step outside, commit changes, and either push or send a PR to Dandihub.
For reference, the following files are located in the dandi-info
subfolder:
group_vars/all
: ansible file contains variables for various templatescluster-autoscaler-multi-asg.yaml.j2
: k8s cluster autoscaler specconfig.yaml.j2
: z2jh jupyterhub configurationhosts
: ansible provides IP of control hostnodes[1-3].yaml.j2
: k8s node specs for on-demand nodes in multiple zonespod.yaml.j2
: k8s pod for introspecting shared storagepv_efs.yaml.j2
: k8s persistent volume spec for EFSpvc_efs.yaml.j2
: k8s persistent volume claim for EFSspot-ig.yaml.j2
: k8s non-GPU spec for compute nodesspot-ig-gpu.yaml.j2
: k8s GPU spec for compute nodesstorageclass.yaml.j2
: k8s EFS storageclassteardown.yml
: ansible file for tearing down the clusterz2jh.yml
: ansible file for starting up the cluster
-
To learn how to interact with the DANDI archive and for examples on how to use the DANDI Client in various use cases, see the handbook.
-
To get help:
- ask a question: https://github.com/dandi/helpdesk/discussions
- file a feature request or bug report: https://github.com/dandi/helpdesk/issues/new/choose
- contact the DANDI team: [email protected]