Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various upgrades #19

Merged
merged 5 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packer/provisioners/ansible/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ zlib_async_timeout: 300 # seconds (5 minutes)
zlib_async_check_interval: 15 # seconds
zlib_async_check_retries: 20

hdf5_async_timeout: 3600 # seconds (60 minutes)
hdf5_async_check_interval: 60 # seconds
hdf5_async_check_retries: 60
hdf5_async_timeout: 7200 # seconds (60 minutes)
hdf5_async_check_interval: 120 # seconds
hdf5_async_check_retries: 80

netcdf_c_async_timeout: 1800 # seconds (30 minutes)
netcdf_c_async_check_interval: 120 # seconds
Expand Down
2 changes: 1 addition & 1 deletion packer/provisioners/ansible/roles/maven/vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
mvn_install_dir: "{{ install_dir }}/mvn"
maven_version: 3.6.3
maven_version: 3.9.8
4 changes: 2 additions & 2 deletions packer/provisioners/scripts/bootstrap_last_aws.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ if [ "$EUID" -ne 0 ]; then
SUDO_CMD="sudo"
fi

# Need openjdk-11-jre-headless so that jenkins can connect to worker nodes
# Need openjdk-xx-jre-headless so that jenkins can connect to worker nodes
# using this ami.
${SUDO_CMD} apt install --yes openjdk-11-jre-headless
${SUDO_CMD} apt install --yes openjdk-17-jre-headless
Loading