File tree 5 files changed +19
-19
lines changed
terraform/slurm_cluster/modules
5 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -234,11 +234,11 @@ accross all instances and allows easy user control with
234
234
### What Slurm image do I use for production?
235
235
236
236
By default, the [ slurm_cluster] ( ../terraform/slurm_cluster/README.md ) terraform
237
- module uses the latest Slurm image family (e.g. ` slurm-gcp-6-0-hpc-centos-7 ` ).
238
- As new Slurm image families are released, coenciding with periodic Slurm
239
- releases, the terraform module will be updated to track the newest image family
240
- by setting it as the new default. This update can be considered a breaking
241
- change.
237
+ module uses the latest Slurm image family (e.g.
238
+ ` slurm-gcp-6-1-hpc-rocky-linux-8 ` ). As new Slurm image families are released,
239
+ coenciding with periodic Slurm releases, the terraform module will be updated to
240
+ track the newest image family by setting it as the new default. This update can
241
+ be considered a breaking change.
242
242
243
243
In a production setting, it is recommended to explicitly set an image family.
244
244
Doing so will prevent ` slurm-gcp ` changes to the default image family from
Original file line number Diff line number Diff line change @@ -74,12 +74,12 @@ For the [TPU](./glossary.md#tpu) nodes docker images are also released.
74
74
75
75
| Project | Image Family | Arch | Status |
76
76
| :------------------: | :---------------------------------- | :----- | :------------- |
77
- | schedmd-slurm-public | slurm-gcp-6-0 -debian-11 | x86_64 | Supported |
78
- | schedmd-slurm-public | slurm-gcp-6-0 -hpc-rocky-linux-8 | x86_64 | Supported |
79
- | schedmd-slurm-public | slurm-gcp-6-0 -ubuntu-2004-lts | x86_64 | Supported |
80
- | schedmd-slurm-public | slurm-gcp-6-0 -ubuntu-2204-lts-arm64 | ARM64 | Supported |
81
- | schedmd-slurm-public | slurm-gcp-6-0 -hpc-centos-7-k80 | x86_64 | EOL 2024-05-01 |
82
- | schedmd-slurm-public | slurm-gcp-6-0 -hpc-centos-7 | x86_64 | EOL 2024-01-01 |
77
+ | schedmd-slurm-public | slurm-gcp-6-1 -debian-11 | x86_64 | Supported |
78
+ | schedmd-slurm-public | slurm-gcp-6-1 -hpc-rocky-linux-8 | x86_64 | Supported |
79
+ | schedmd-slurm-public | slurm-gcp-6-1 -ubuntu-2004-lts | x86_64 | Supported |
80
+ | schedmd-slurm-public | slurm-gcp-6-1 -ubuntu-2204-lts-arm64 | ARM64 | Supported |
81
+ | schedmd-slurm-public | slurm-gcp-6-1 -hpc-centos-7-k80 | x86_64 | EOL 2024-05-01 |
82
+ | schedmd-slurm-public | slurm-gcp-6-1 -hpc-centos-7 | x86_64 | EOL 2024-01-01 |
83
83
84
84
### Published Docker Image Family
85
85
Original file line number Diff line number Diff line change @@ -68,12 +68,12 @@ state we will also include if it is tested or not.
68
68
69
69
| Project | Image Family | Arch | TPU Status |
70
70
| :------------------: | :---------------------------------- | :----- | :---------- |
71
- | schedmd-slurm-public | slurm-gcp-6-0 -debian-11 | x86_64 | Untested |
72
- | schedmd-slurm-public | slurm-gcp-6-0 -hpc-rocky-linux-8 | x86_64 | Tested |
73
- | schedmd-slurm-public | slurm-gcp-6-0 -ubuntu-2004-lts | x86_64 | Untested |
74
- | schedmd-slurm-public | slurm-gcp-6-0 -ubuntu-2204-lts-arm64 | ARM64 | Untested |
75
- | schedmd-slurm-public | slurm-gcp-6-0 -hpc-centos-7-k80 | x86_64 | Unsupported |
76
- | schedmd-slurm-public | slurm-gcp-6-0 -hpc-centos-7 | x86_64 | Unsupported |
71
+ | schedmd-slurm-public | slurm-gcp-6-1 -debian-11 | x86_64 | Untested |
72
+ | schedmd-slurm-public | slurm-gcp-6-1 -hpc-rocky-linux-8 | x86_64 | Tested |
73
+ | schedmd-slurm-public | slurm-gcp-6-1 -ubuntu-2004-lts | x86_64 | Untested |
74
+ | schedmd-slurm-public | slurm-gcp-6-1 -ubuntu-2204-lts-arm64 | ARM64 | Untested |
75
+ | schedmd-slurm-public | slurm-gcp-6-1 -hpc-centos-7-k80 | x86_64 | Unsupported |
76
+ | schedmd-slurm-public | slurm-gcp-6-1 -hpc-centos-7 | x86_64 | Unsupported |
77
77
78
78
## Terraform
79
79
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ locals {
47
47
source_image_family = (
48
48
var. source_image_family != " " && var. source_image_family != null
49
49
? var. source_image_family
50
- : " slurm-gcp-6-0 -hpc-rocky-linux-8"
50
+ : " slurm-gcp-6-1 -hpc-rocky-linux-8"
51
51
)
52
52
source_image_project = (
53
53
var. source_image_project != " " && var. source_image_project != null
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ locals {
58
58
service_account = var.service_account != null ? var.service_account : local.service_account
59
59
preserve_tpu = contains (local. simple_nodes , var. node_type ) ? var.preserve_tpu : false
60
60
data_disks = var.data_disks
61
- docker_image = var.docker_image != " " ? var.docker_image : " gcr.io/schedmd-slurm-public/tpu:slurm-gcp-6-0 -ubuntu-20.04-tf-${ var . tf_version } "
61
+ docker_image = var.docker_image != " " ? var.docker_image : " gcr.io/schedmd-slurm-public/tpu:slurm-gcp-6-1 -ubuntu-20.04-tf-${ var . tf_version } "
62
62
network = var.network
63
63
subnetwork = local.snetwork
64
64
}
You can’t perform that action at this time.
0 commit comments