Skip to content

Commit 552d205

Browse files
committed
Slurm upgrade to 23.02.7
Upgrade Slurm from version 23.02.6 to version 23.02.7 Signed-off-by: chenwany <chenwany@amazon.com>
1 parent 9c91252 commit 552d205

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
1414
- Allow for mounting `home` as an EFS or FSx external shared storage via the `SharedStorage` section of the config file.
1515

1616
**CHANGES**
17+
- Upgrade Slurm to 23.02.7 (from 23.02.6).
1718
- Do not wait for static nodes in maintenance to signal CFN that the head node initialization is complete.
1819
- Upgrade `aws-cfn-bootstrap` to version 2.0-28.
1920
- Upgrade Python to 3.9.17.

cookbooks/aws-parallelcluster-slurm/attributes/slurm_attributes.rb

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
# URLs to software packages used during install recipes
22
default['cluster']['slurm']['fleet_config_path'] = "#{node['cluster']['slurm_plugin_dir']}/fleet-config.json"
33

4-
# Slurm attributes shared between install_slurm and configure_slurm_accounting
5-
default['cluster']['slurm']['commit'] = ''
6-
default['cluster']['slurm']['branch'] = ''
7-
default['cluster']['slurm']['sha256'] = 'ed44d4e591c0f91874d535cb8c9ea67dd2a38bfa4e96fa6c71687293f6a1d3bb'
8-
94
default['cluster']['dns_domain'] = nil
105
default['cluster']['use_private_hostname'] = 'false'
116

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Slurm
2-
default['cluster']['slurm']['version'] = '23-02-6-1'
2+
default['cluster']['slurm']['version'] = '23-02-7-1'
3+
default['cluster']['slurm']['commit'] = ''
4+
default['cluster']['slurm']['branch'] = ''
5+
default['cluster']['slurm']['sha256'] = '3f60ad5b5a492312d1febb9f9167caa3aee7f8438bb032590a993f5a65c5e4db'
6+
default['cluster']['slurm']['base_url'] = "https://github.com/SchedMD/slurm/archive"
37
# Munge
48
default['cluster']['munge']['munge_version'] = '0.5.15'

cookbooks/aws-parallelcluster-slurm/recipes/install/install_slurm.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"slurm-#{slurm_version}"
3131
end
3232
slurm_tarball = "#{node['cluster']['sources_dir']}/#{slurm_tar_name}.tar.gz"
33-
slurm_url = "https://github.com/SchedMD/slurm/archive/#{slurm_tar_name}.tar.gz"
33+
slurm_url = "#{node['cluster']['slurm']['base_url']}/#{slurm_tar_name}.tar.gz"
3434
slurm_sha256 = if slurm_branch.empty?
3535
node['cluster']['slurm']['sha256']
3636
end

0 commit comments

Comments
 (0)