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

add modules to conveniently mount various directories #120

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
6 changes: 6 additions & 0 deletions etc/modules.d/cfs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: cfs
cli_arg: cfs
help: Mount CFS
env: MOUNT_CFS
bind:
- $CFS:$CFS
6 changes: 6 additions & 0 deletions etc/modules.d/home.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: home
cli_arg: home
help: Mount home directory
env: MOUNT_HOME
bind:
- $HOME:$HOME
7 changes: 7 additions & 0 deletions etc/modules.d/jupyter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: jupyter
cli_arg: jupyter
help: Mount /tmp and home for Jupyter use
env: MOUNT_JUPYTER
bind:
- /tmp:/tmp
- $HOME:$HOME
6 changes: 6 additions & 0 deletions etc/modules.d/scratch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: scratch
cli_arg: scratch
help: Mount scratch directory
env: MOUNT_SCRATCH
bind:
- $SCRATCH:$SCRATCH
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ console_scripts =
etc/01-cvmfs.conf
etc/podman_hpc.yaml
etc/podman_hpc/modules.d =
etc/modules.d/home.yaml
etc/modules.d/scratch.yaml
etc/modules.d/cfs.yaml
etc/modules.d/jupyter.yaml
etc/modules.d/gpu.yaml
etc/modules.d/mpich.yaml
etc/modules.d/cuda-mpich.yaml
Expand Down