-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '2025-1' into grappe-BCM-4010-7010
- Loading branch information
Showing
27 changed files
with
594 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
jupyterhub::jupyterhub_config_hash: | ||
SbatchForm: | ||
runtime: | ||
min: 1.0 | ||
def: 2.0 | ||
max: 5.0 | ||
nprocs: | ||
min: 1 | ||
def: 1 | ||
max: 8 | ||
memory: | ||
min: 1024 | ||
max: 10000 | ||
def: 6144 | ||
oversubscribe: | ||
def: true | ||
lock: true | ||
ui: | ||
def: 'lab' | ||
partition: | ||
lock: false | ||
SlurmFormSpawner: | ||
disable_form: false | ||
|
||
profile::software_stack::lmod_default_modules: | ||
- 'StdEnv/2023' | ||
- 'gcc' | ||
- 'mii' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
locals { | ||
custom = { | ||
nnodes = { | ||
cpupool = 2 | ||
} | ||
home_size = 50 | ||
project_size = 100 | ||
scratch_size = 100 | ||
|
||
user_quotas = { | ||
home = "4g" | ||
project = "8g" | ||
scratch = "8g" | ||
} | ||
} | ||
name = "ant3814" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../common/main.tf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
jupyterhub::jupyterhub_config_hash: | ||
SbatchForm: | ||
runtime: | ||
min: 1.0 | ||
def: 2.0 | ||
max: 5.0 | ||
nprocs: | ||
min: 1 | ||
def: 1 | ||
max: 8 | ||
memory: | ||
min: 1024 | ||
max: 10000 | ||
def: 6144 | ||
oversubscribe: | ||
def: true | ||
lock: true | ||
ui: | ||
def: 'lab' | ||
partition: | ||
lock: false | ||
SlurmFormSpawner: | ||
disable_form: false | ||
|
||
profile::software_stack::lmod_default_modules: | ||
- 'StdEnv/2023' | ||
- 'gcc' | ||
- 'mii' | ||
- 'ipython-kernel/3.11' | ||
|
||
cron::job: | ||
spawn_nodes: | ||
command: '/opt/software/slurm/bin/scontrol update node=nodecpupool[1-2] state=power_up' | ||
minute: '25' | ||
hour: '10' | ||
month: '1-4' | ||
weekday: '4' | ||
user: 'root' | ||
description: 'spawn nodes at 10:25 on each Thursdays' | ||
environment: ['CRON_TZ=America/New_York'] | ||
spawn_nodes_jan: | ||
command: '/opt/software/slurm/bin/scontrol update node=nodecpupool[1-2] state=power_up' | ||
minute: '25' | ||
hour: '8' | ||
date: '29' | ||
month: '1' | ||
weekday: '*' | ||
user: 'root' | ||
description: 'spawn nodes at 8:25 on 29 January' | ||
environment: ['CRON_TZ=America/New_York'] | ||
spawn_nodes_feb: | ||
command: '/opt/software/slurm/bin/scontrol update node=nodecpupool[1-2] state=power_up' | ||
minute: '25' | ||
hour: '8' | ||
date: '12' | ||
month: '2' | ||
weekday: '*' | ||
user: 'root' | ||
description: 'spawn nodes at 8:25 on 12 February' | ||
environment: ['CRON_TZ=America/New_York'] | ||
spawn_nodes_apr: | ||
command: '/opt/software/slurm/bin/scontrol update node=nodecpupool[1-2] state=power_up' | ||
minute: '25' | ||
hour: '8' | ||
date: '2,16' | ||
month: '4' | ||
weekday: '*' | ||
user: 'root' | ||
description: 'spawn nodes at 8:25 on for April' | ||
environment: ['CRON_TZ=America/New_York'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
locals { | ||
custom = { | ||
nnodes = { | ||
cpupool = 2 | ||
} | ||
home_size = 50 | ||
project_size = 100 | ||
scratch_size = 800 | ||
|
||
user_quotas = { | ||
home = "3g" | ||
} | ||
} | ||
name = "bif4007" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../common/main.tf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
profile::cvmfs::client::lmod_default_modules: ['StdEnv/2023'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
locals { | ||
custom = { | ||
nnodes = { | ||
cpu = 0 | ||
cpupool = 8 | ||
} | ||
|
||
instances_type_map = { | ||
beluga = { | ||
cpu = "c2-7.5gb" | ||
cpupool = "c2-7.5gb" | ||
} | ||
} | ||
} | ||
name = "chem505" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../common/main.tf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mod 'puppet-cron', '2.0.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH4ahFXyvFnKcLojCQ8nrMS1jkXa9fn8ztjRAAG92UMI | |
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBr2jTiSZFWTB0RVFV9eFcLBogbhH34ZFQf46+wYOhQb [email protected] | ||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKtwVw/w5qNSIqQwksmYRwnNzj53tdNakM0iYqnQWUds [email protected] | ||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGH5ZbhAxZTonq5YYcaHRMGPHb92vSlWWOwwParu7T59 [email protected] | ||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjg/qhQHotFzZrYfCdru/MFMdGfcS2/F9lcjP1khfIq [email protected] |
Oops, something went wrong.