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

Switch default config to HPCC cluster #440

Merged
merged 9 commits into from
Sep 21, 2023
Merged
Changes from 8 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
41 changes: 27 additions & 14 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#------------------------------------------------------------

# Cluster host and scheduler options: the defaults come from
# Graham at Compute Canada, running Slurm. Other options can
# be found in the library of snippets,
# the HPC Carpentry tutorial cluster, running Slurm. Other
# options can be found in the library of snippets,
# `_includes/snippets_library`. To use one, replace options
# below with those in `_config_options.yml` from the
# library. E.g, to customise for Cirrus at EPCC, running
Expand All @@ -20,32 +20,45 @@
# installation. Remember to keep the leading slash on the
# `snippets` variable below!

snippets: "/snippets_library/ComputeCanada_Graham_slurm"
# ---------------------------------------------------------------
# HPC Carpentries in the Cloud: Slurm + Software Stack from EESSI
# ---------------------------------------------------------------
#
# The HPC Carpentry Cluster in the Cloud is provided as a public
# service by volunteers. It is provisioned with Magic Castle
# <https://github.com/ComputeCanada/magic_castle> using the EESSI
# <https://eessi.github.io/docs/> software stack. If you need an
# account, please visit <cluster.hpc-carpentry.org>.
#
# Compute responsibly.

snippets: "/snippets_library/HPCC_MagicCastle_slurm"

local:
prompt: "[user@laptop ~]$"
prompt: "[you@laptop:~]$"
bash_shebang: "#!/usr/bin/env bash"

remote:
name: "Graham"
login: "graham.computecanada.ca"
host: "gra-login1"
node: "aci-377"
location: "University of Waterloo"
name: "HPC Carpentry's Cloud Cluster"
login: "cluster.hpc-carpentry.org"
portal: "https://mokey.cluster.hpc-carpentry.org"
host: "login1"
node: "smnode1"
ocaisa marked this conversation as resolved.
Show resolved Hide resolved
location: "cluster.hpc-carpentry.org"
homedir: "/home"
user: "yourUsername"
prompt: "[yourUsername@gra-login1 ~]$"
module_python3: "python3"
bash_shebang: "#!/usr/bin/env bash"
module_python3: "Python"
prompt: "[yourUsername@login1 ~]$"
bash_shebang: "#!/bin/bash"

sched:
name: "Slurm"
submit:
name: "sbatch"
options: ""
queue:
debug: "debug"
testing: "testing"
debug: "smnode"
testing: "cpubase_bycore_b1"
status: "squeue"
flag:
user: "-u yourUsername"
Expand Down
Loading