Skip to content

Commit

Permalink
Slurm upgrade to 23.02.7
Browse files Browse the repository at this point in the history
Upgrade Slurm from version 23.02.6 to version 23.02.7

Signed-off-by: chenwany <[email protected]>
  • Loading branch information
chenwany committed Dec 13, 2023
1 parent 5575c6e commit a1fe218
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
- Allow for mounting `home` as an EFS or FSx external shared storage via the `SharedStorage` section of the config file.

**CHANGES**
- Upgrade Slurm to 23.02.7 (from 23.02.6).
- Do not wait for static nodes in maintenance to signal CFN that the head node initialization is complete.
- Upgrade `aws-cfn-bootstrap` to version 2.0-28.
- Upgrade Python to 3.9.17.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
# URLs to software packages used during install recipes
default['cluster']['slurm']['fleet_config_path'] = "#{node['cluster']['slurm_plugin_dir']}/fleet-config.json"

# Slurm attributes shared between install_slurm and configure_slurm_accounting
default['cluster']['slurm']['commit'] = ''
default['cluster']['slurm']['branch'] = ''
default['cluster']['slurm']['sha256'] = 'ed44d4e591c0f91874d535cb8c9ea67dd2a38bfa4e96fa6c71687293f6a1d3bb'

default['cluster']['dns_domain'] = nil
default['cluster']['use_private_hostname'] = 'false'

Expand Down
6 changes: 5 additions & 1 deletion cookbooks/aws-parallelcluster-slurm/attributes/versions.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Slurm
default['cluster']['slurm']['version'] = '23-02-6-1'
default['cluster']['slurm']['version'] = '23-02-7-1'
default['cluster']['slurm']['commit'] = ''
default['cluster']['slurm']['branch'] = ''
default['cluster']['slurm']['sha256'] = '3f60ad5b5a492312d1febb9f9167caa3aee7f8438bb032590a993f5a65c5e4db'
default['cluster']['slurm']['base_url'] = "https://github.com/SchedMD/slurm/archive"
# Munge
default['cluster']['munge']['munge_version'] = '0.5.15'
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"slurm-#{slurm_version}"
end
slurm_tarball = "#{node['cluster']['sources_dir']}/#{slurm_tar_name}.tar.gz"
slurm_url = "https://github.com/SchedMD/slurm/archive/#{slurm_tar_name}.tar.gz"
slurm_url = "#{node['cluster']['slurm']['base_url']}/#{slurm_tar_name}.tar.gz"
slurm_sha256 = if slurm_branch.empty?
node['cluster']['slurm']['sha256']
end
Expand Down

0 comments on commit a1fe218

Please sign in to comment.