From 71ce1a56deb0af684e9d961250bcecb8da703c8b Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Thu, 14 Nov 2024 02:45:15 +0000 Subject: [PATCH] feat: upgrade to azcopy v10.27.1 for volume clone --- .trivyignore | 1 - pkg/blobplugin/Dockerfile | 2 +- test/sanity/run-test.sh | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 .trivyignore diff --git a/.trivyignore b/.trivyignore deleted file mode 100644 index de6dfc5a2..000000000 --- a/.trivyignore +++ /dev/null @@ -1 +0,0 @@ -CVE-2024-51744 diff --git a/pkg/blobplugin/Dockerfile b/pkg/blobplugin/Dockerfile index a65dcf280..416d95319 100644 --- a/pkg/blobplugin/Dockerfile +++ b/pkg/blobplugin/Dockerfile @@ -32,7 +32,7 @@ RUN if [ "$ARCH" = "arm64" ]; then \ fi # install azcopy -RUN curl -Ls https://azcopyvnext.azureedge.net/releases/release-10.27.0-20241030/azcopy_linux_${ARCH}_10.27.0.tar.gz \ +RUN curl -Ls https://azcopyvnext.azureedge.net/releases/release-10.27.1-20241113/azcopy_linux_${ARCH}_10.27.1.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 31298db1d..e0c05e514 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 azcopyvnext.azureedge.net/releases/release-10.27.0-20241030/azcopy_linux_amd64_10.27.0.tar.gz + wget -O $azcopyTarFile azcopyvnext.azureedge.net/releases/release-10.27.1-20241113/azcopy_linux_amd64_10.27.1.tar.gz tar -zxvf $azcopyTarFile mv ./azcopy*/azcopy /usr/local/bin/azcopy rm -rf ./$azcopyTarFile