Skip to content

Commit

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

Signed-off-by: Luca Carrogu <[email protected]>
  • Loading branch information
lukeseawalker committed Nov 23, 2023
1 parent d953d88 commit 2442f50
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 @@ -15,6 +15,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
- Critical Update for Intel Fortran Compiler & Intel Fortran Compiler Classic: 2023.2.1

**CHANGES**
- Upgrade Slurm to 23.11.0 (from 23.02.6).
- Upgrade third-party cookbook dependencies:
- nfs-5.1.2 (from nfs-5.0.0)

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-11-0-1'
default['cluster']['slurm']['commit'] = ''
default['cluster']['slurm']['branch'] = ''
default['cluster']['slurm']['sha256'] = '3780773a80b73ea2edb4353318b4220188f4eda92c31ab3a2bdd3a4fdec76be9'
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 2442f50

Please sign in to comment.