Skip to content

Commit f1c978c

Browse files
committed
feat: upgrade to azcopy v10.25.1 for volume clone and snapshot restore
1 parent a90420a commit f1c978c

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.trivyignore

-3
This file was deleted.

pkg/azurefileplugin/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ COPY ${binary} /azurefileplugin
2121
RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && clean-install ca-certificates cifs-utils util-linux e2fsprogs mount udev xfsprogs nfs-common netbase wget
2222

2323
# install azcopy
24-
ARG azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.25.0-20240522/azcopy_linux_amd64_10.25.0.tar.gz
24+
ARG azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.25.1-20240612/azcopy_linux_amd64_10.25.1.tar.gz
2525
RUN if [ "$ARCH" == "arm64" ] ; then \
26-
azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.25.0-20240522/azcopy_linux_arm64_10.25.0.tar.gz; fi
26+
azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.25.1-20240612/azcopy_linux_arm64_10.25.1.tar.gz; fi
2727
RUN wget -O azcopy.tar.gz ${azcopyURL} && \
2828
tar xvzf azcopy.tar.gz -C . && rm azcopy.tar.gz && \
2929
mv ./azcopy_linux_$ARCH_*/azcopy /usr/local/bin/azcopy && \

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
echo 'Downloading azcopy...'
4242
azcopyTarFile="azcopy.tar.gz"
43-
wget -O $azcopyTarFile azcopyvnext.azureedge.net/releases/release-10.25.0-20240522/azcopy_linux_amd64_10.25.0.tar.gz
43+
wget -O $azcopyTarFile azcopyvnext.azureedge.net/releases/release-10.25.1-20240612/azcopy_linux_amd64_10.25.1.tar.gz
4444
tar -zxvf $azcopyTarFile
4545
mv ./azcopy*/azcopy /usr/local/bin/azcopy
4646
rm -rf ./$azcopyTarFile

0 commit comments

Comments
 (0)