Skip to content

Commit 75c8f51

Browse files
committed
Change pyxis download url to s3 url
1 parent dbbbd28 commit 75c8f51

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

cookbooks/aws-parallelcluster-platform/resources/enroot/partial/_enroot_common.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
ENROOT_CONFIG_RELEASE=pyxis
4141
SHARED_DIR=#{node['cluster']['shared_dir']}
4242
NONROOT_USER=#{node['cluster']['cluster_user']}
43-
# wget -O /tmp/enroot.template.conf https://raw.githubusercontent.com/aws-samples/aws-parallelcluster-post-install-scripts/${ENROOT_CONFIG_RELEASE}/pyxis/enroot.template.conf
4443
mkdir -p ${SHARED_DIR}/enroot
4544
chown ${NONROOT_USER} ${SHARED_DIR}/enroot
4645
ENROOT_CACHE_PATH=${SHARED_DIR}/enroot envsubst < /tmp/enroot.template.conf > /tmp/enroot.conf

cookbooks/aws-parallelcluster-slurm/recipes/install/install_pyxis.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
return unless nvidia_enabled?
1919

2020
pyxis_version = node['cluster']['pyxis']['version']
21-
pyxis_url = "https://github.com/NVIDIA/pyxis/archive/refs/tags/v#{pyxis_version}.tar.gz"
21+
pyxis_url = "#{node['cluster']['artifacts_s3_url']}/dependencies/pyxis/v#{pyxis_version}.tar.gz"
2222
pyxis_tarball = "#{node['cluster']['sources_dir']}/pyxis-#{pyxis_version}.tar.gz"
2323

2424
remote_file pyxis_tarball do

0 commit comments

Comments
 (0)