From 25a543787cabd5b8e46c5cd08adab710cf943f4a Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Thu, 30 Oct 2025 14:05:14 +0000 Subject: [PATCH] chore: upgrade azcopy to v10.31.0 --- pkg/blobplugin/Dockerfile | 2 +- test/sanity/run-test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/blobplugin/Dockerfile b/pkg/blobplugin/Dockerfile index 3390ff3c6..3b62de7f1 100644 --- a/pkg/blobplugin/Dockerfile +++ b/pkg/blobplugin/Dockerfile @@ -32,7 +32,7 @@ RUN if [ "$ARCH" = "arm64" ]; then \ RUN curl -Ls https://github.com/Azure/AZNFS-mount/releases/download/${aznfsVer}/${aznfsTarPkgName}.tar.gz | tar xvzf - -C / --keep-directory-symlink; # install azcopy -RUN curl -Ls https://github.com/Azure/azure-storage-azcopy/releases/download/v10.30.1/azcopy_linux_${ARCH}_10.30.1.tar.gz \ +RUN curl -Ls https://github.com/Azure/azure-storage-azcopy/releases/download/v10.31.0/azcopy_linux_${ARCH}_10.31.0.tar.gz \ | tar xvzf - --strip-components=1 -C /usr/local/bin/ --wildcards "*/azcopy" # download blobfuse deb diff --git a/test/sanity/run-test.sh b/test/sanity/run-test.sh index e54f7990a..6114163a1 100755 --- a/test/sanity/run-test.sh +++ b/test/sanity/run-test.sh @@ -36,7 +36,7 @@ azcopyPath="/usr/local/bin/azcopy" if [ ! -f "$azcopyPath" ]; then azcopyTarFile="azcopy.tar.gz" echo 'Downloading azcopy...' - wget -O $azcopyTarFile https://github.com/Azure/azure-storage-azcopy/releases/download/v10.30.1/azcopy_linux_amd64_10.30.1.tar.gz + wget -O $azcopyTarFile https://github.com/Azure/azure-storage-azcopy/releases/download/v10.31.0/azcopy_linux_amd64_10.31.0.tar.gz tar -zxvf $azcopyTarFile mv ./azcopy*/azcopy /usr/local/bin/azcopy rm -rf ./$azcopyTarFile