Skip to content

Commit a362060

Browse files
committed
build ubuntu24
1 parent 46a0ac1 commit a362060

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cookbooks/aws-parallelcluster-platform/resources/arm_pl/arm_pl_ubuntu22.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
# See the License for the specific language governing permissions and limitations under the License.
1414

1515
provides :arm_pl, platform: 'ubuntu' do |node|
16-
node['platform_version'].to_i == 22
16+
node['platform_version'].to_i >= 22
1717
end
1818

1919
use 'partial/_arm_pl_common.rb'
2020

2121
action_class do
2222
def armpl_platform
23-
"Ubuntu-#{node['platform_version']}"
23+
"Ubuntu-22.04"
2424
end
2525

2626
def modulefile_dir

cookbooks/aws-parallelcluster-platform/resources/dcv/dcv_ubuntu22.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied.
1414
# See the License for the specific language governing permissions and limitations under the License
1515
provides :dcv, platform: 'ubuntu' do |node|
16-
node['platform_version'].to_i == 22
16+
node['platform_version'].to_i >= 22
1717
end
1818

1919
use 'partial/_dcv_common'

cookbooks/aws-parallelcluster-platform/resources/dcv/partial/_dcv_common.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def dcv_gpu_accel_supported?
272272
end
273273

274274
def dcv_url
275-
"#{node['cluster']['artifacts_s3_url']}/dependencies/dcv/#{dcv_package}.tgz"
275+
"https://d1uj6qtbmh3dt5.cloudfront.net/2024.0/Servers/#{dcv_package}.tgz"
276276
end
277277

278278
def dcv_tarball

cookbooks/aws-parallelcluster-platform/resources/nvidia_driver/nvidia_driver_ubuntu22.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and limitations under the License.
1414

1515
provides :nvidia_driver, platform: 'ubuntu' do |node|
16-
node['platform_version'].to_i == 22
16+
node['platform_version'].to_i >= 22
1717
end
1818

1919
use 'partial/_nvidia_driver_common.rb'

0 commit comments

Comments
 (0)