File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
cookbooks/aws-parallelcluster-slurm/recipes/config Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
1212** CHANGES**
1313- Ubuntu 20.04 is no longer supported.
1414- Upgrade Slurm to version 24.11.5.
15+ - Addressed cluster id mismatch known issue by deleting the file ` /var/spool/slurm.state/clustername ` before configuring Slurm accounting.
1516- Upgrade DCV to version 2024.0-19030.
1617- Remove ` berkshelf ` . All cookbooks are local and do not need ` berkshelf ` dependency management.
1718
Original file line number Diff line number Diff line change 7676 action action
7777end unless on_docker?
7878
79+ file "/var/spool/slurm.state/clustername" do
80+ action "delete"
81+ end
82+
7983if node [ 'cluster' ] [ 'slurmdbd_service_enabled' ] == "true"
8084 # After starting slurmdbd the database may not be fully responsive yet and
8185 # its bootstrapping may fail. We need to wait for sacctmgr to successfully
8892 retry_delay 10
8993 end unless kitchen_test? || ( node [ 'cluster' ] [ 'node_type' ] == "ExternalSlurmDbd" )
9094
91-
92- file '/var/spool/slurm.state/clustername' do
93- action :delete
94- end
95-
9695 bash "bootstrap slurm database" do
9796 user 'root'
9897 group 'root'
You can’t perform that action at this time.
0 commit comments