Skip to content

Commit 0c05f11

Browse files
committed
Update CHANGELOG
1 parent d7a8aea commit 0c05f11

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ This file is used to list changes made in each version of the AWS ParallelCluste
66
3.15.0
77
------
88

9+
**CHANGES**
10+
- Replace cfn-hup in compute nodes with systemd timers to support in place updates.
11+
912
3.14.1
1013
------
1114

cookbooks/aws-parallelcluster-environment/resources/cfn_hup_configuration.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@
6868
cfn_init_role: instance_role_name,
6969
# ComputeFleet specific variables
7070
update_hook_script_dir: node['cluster']['scripts_dir'],
71-
node_bootstrap_timeout: node['cluster']['compute_node_bootstrap_timeout'] || node['cluster']['Timeout'],
72-
update_dir: node['cluster']['shared_update_path']
71+
node_bootstrap_timeout: node['cluster']['compute_node_bootstrap_timeout'] || node['cluster']['Timeout']
7372
)
7473
end
7574
end

cookbooks/aws-parallelcluster-environment/spec/unit/resources/cfn_hup_configuration_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ def self.configure(chef_run)
8484
launch_template_resource_id: LAUNCH_TEMPLATE_ID,
8585
update_hook_script_dir: SCRIPT_DIR,
8686
node_bootstrap_timeout: NODE_BOOTSTRAP_TIMEOUT,
87+
update_dir: "#{MONITOR_SHARED_DIR}/check_update",
8788
})
8889
end
8990

cookbooks/aws-parallelcluster-slurm/libraries/helpers.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def wait_cluster_ready
173173
" --config-version #{node['cluster']['cluster_config_version']}" \
174174
" --region #{node['cluster']['region']}"
175175
timeout 30
176-
retries 20
176+
retries 10
177177
retry_delay 90
178178
end
179179
end

0 commit comments

Comments
 (0)