Skip to content

Commit 31171b6

Browse files
committed
chore: fix azcopy download error
1 parent 80144dc commit 31171b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/azurefileplugin/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ARG ARCH
2222

2323
RUN apt update \
2424
&& apt install -y curl \
25-
&& curl -Ls https://azcopyvnext.azureedge.net/releases/release-10.27.1-20241113/azcopy_linux_${ARCH}_10.27.1.tar.gz \
25+
&& curl -Ls https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.27.1-20241113/azcopy_linux_${ARCH}_10.27.1.tar.gz \
2626
| tar xvzf - --strip-components=1 -C /usr/local/bin/ --wildcards "*/azcopy"
2727

2828
FROM base

test/sanity/run-test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ azcopyPath="/usr/local/bin/azcopy"
4040
if [ ! -f "$azcopyPath" ]; then
4141
azcopyTarFile="azcopy.tar.gz"
4242
echo 'Downloading azcopy...'
43-
wget -O $azcopyTarFile azcopyvnext.azureedge.net/releases/release-10.27.1-20241113/azcopy_linux_amd64_10.27.1.tar.gz
43+
wget -O $azcopyTarFile azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-10.27.1-20241113/azcopy_linux_amd64_10.27.1.tar.gz
4444
tar -zxvf $azcopyTarFile
4545
mv ./azcopy*/azcopy /usr/local/bin/azcopy
4646
rm -rf ./$azcopyTarFile

0 commit comments

Comments
 (0)