Skip to content

Commit

Permalink
Upgrade nfs third-party cookbook to version nfs-5.1.2 (from nfs-5.0.0)
Browse files Browse the repository at this point in the history
Version 5.0.1 introduced support for Ubuntu22, anyway we weren't able to upgrade
the package because nfs-utils `1:2.6.1-1ubuntu1.2` wasn't correctly supported.

I created a patch for nfs cookbook to fix this incompatibility issue with nfs-utils.
This has been released, so we can now upgrade to 5.1.x and remove the `ubuntu.22.json` file.

### References
* https://github.com/sous-chefs/nfs/releases
* sous-chefs/nfs#142
* https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1971935

Signed-off-by: Enrico Usai <[email protected]>
  • Loading branch information
enrico-usai committed Nov 16, 2023
1 parent c03e02b commit 216760e
Show file tree
Hide file tree
Showing 76 changed files with 315 additions and 5,122 deletions.
2 changes: 1 addition & 1 deletion Berksfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metadata
cookbook "apt", path: "./cookbooks/third-party/apt-7.5.14"
cookbook "iptables", path: "./cookbooks/third-party/iptables-8.0.0"
cookbook "line", path: "./cookbooks/third-party/line-4.5.13"
cookbook "nfs", path: "./cookbooks/third-party/nfs-5.0.0"
cookbook "nfs", path: "./cookbooks/third-party/nfs-5.1.2"
cookbook "openssh", path: "./cookbooks/third-party/openssh-2.11.3"
cookbook "pyenv", path: "./cookbooks/third-party/pyenv-4.2.3"
cookbook "selinux", path: "./cookbooks/third-party/selinux-6.1.12"
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ aws-parallelcluster-cookbook CHANGELOG

This file is used to list changes made in each version of the AWS ParallelCluster cookbook.

3.9.0
------

**ENHANCEMENTS**

**CHANGES**
- Upgrade third-party cookbook dependencies:
- nfs-5.1.2 (from nfs-5.0.0)

**BUG FIXES**

3.8.0
------

Expand Down
2 changes: 1 addition & 1 deletion cookbooks/aws-parallelcluster-awsbatch/Berksfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cookbook "aws-parallelcluster-slurm", path: "../aws-parallelcluster-slurm"
cookbook "apt", path: "../third-party/apt-7.5.14"
cookbook "iptables", path: "../third-party/iptables-8.0.0"
cookbook "line", path: "../third-party/line-4.5.13"
cookbook "nfs", path: "../third-party/nfs-5.0.0"
cookbook "nfs", path: "../third-party/nfs-5.1.2"
cookbook "openssh", path: "../third-party/openssh-2.11.3"
cookbook "pyenv", path: "../third-party/pyenv-4.2.3"
cookbook "selinux", path: "../third-party/selinux-6.1.12"
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/aws-parallelcluster-awsbatch/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

depends 'apt', '~> 7.5.14'
depends 'iptables', '~> 8.0.0'
depends 'nfs', '~> 5.0.0'
depends 'nfs', '~> 5.1.2'
depends 'line', '~> 4.5.13'
depends 'openssh', '~> 2.11.3'
depends 'pyenv', '~> 4.2.3'
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/aws-parallelcluster-entrypoints/Berksfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cookbook "aws-parallelcluster-slurm", path: "../aws-parallelcluster-slurm"
cookbook "apt", path: "../third-party/apt-7.5.14"
cookbook "iptables", path: "../third-party/iptables-8.0.0"
cookbook "line", path: "../third-party/line-4.5.13"
cookbook "nfs", path: "../third-party/nfs-5.0.0"
cookbook "nfs", path: "../third-party/nfs-5.1.2"
cookbook "openssh", path: "../third-party/openssh-2.11.3"
cookbook "pyenv", path: "../third-party/pyenv-4.2.3"
cookbook "selinux", path: "../third-party/selinux-6.1.12"
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/aws-parallelcluster-environment/Berksfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata

cookbook "aws-parallelcluster-shared", path: "../aws-parallelcluster-shared"

cookbook "nfs", path: "../third-party/nfs-5.0.0"
cookbook "nfs", path: "../third-party/nfs-5.1.2"

# dependency od nfs
cookbook "line", path: "../third-party/line-4.5.13"
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/aws-parallelcluster-environment/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
supports 'redhat', '= 8.7'

depends 'line', '~> 4.5.13'
depends 'nfs', '~> 5.0.0'
depends 'nfs', '~> 5.1.2'

depends 'aws-parallelcluster-shared', '~> 3.9.0'
1 change: 0 additions & 1 deletion cookbooks/aws-parallelcluster-shared/spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ def for_all_oses
end

def runner(platform:, version:, step_into: [])
path = '../aws-parallelcluster-shared/spec/ubuntu.22.json' if "#{platform}#{version}" == 'ubuntu22.04'
ChefSpec::SoloRunner.new(
platform: platform, version: version, step_into: step_into, path: path
) do |node|
Expand Down
Loading

0 comments on commit 216760e

Please sign in to comment.