Skip to content

Commit 90212c5

Browse files
committed
use and test 2x partitions in arcus env
1 parent ecda5b8 commit 90212c5

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

environments/arcus/hooks/check_slurm.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@
1717
<end>
1818
vars:
1919
expected_sinfo:
20-
- "{{ openhpc_cluster_name }}-compute-[0-1] {{ openhpc_slurm_partitions[0].name }}* up 60-00:00:00 2 idle"
20+
- "{{ openhpc_cluster_name }}-compute-[0-1] small* up 60-00:00:00 2 idle"
21+
- "{{ openhpc_cluster_name }}-compute-[2-3] extra up 60-00:00:00 2 idle"

environments/arcus/terraform/main.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,16 @@ module "cluster" {
3131
flavor: "vm.alaska.cpu.general.small"
3232
image: "openhpc-220830-2042.qcow2"
3333
}
34+
extra: {
35+
flavor: "vm.alaska.cpu.general.small"
36+
image: "openhpc-220830-2042.qcow2"
37+
}
3438
}
3539
compute_nodes = {
3640
compute-0: "small"
3741
compute-1: "small"
42+
compute-2: "extra"
43+
compute-3: "extra"
3844
}
3945

4046
environment_root = var.environment_root

0 commit comments

Comments
 (0)