Skip to content

Commit 9fcd210

Browse files
authored
Merge pull request kubernetes-sigs#3027 from k8s-infra-cherrypick-robot/cherry-pick-3026-to-release-1.35
[release-1.35] chore: upgrade azcopy to v10.32.2 to fix CVEs
2 parents 3586cc2 + 9457051 commit 9fcd210

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.trivyignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
CVE-2024-3744
2-
CVE-2026-24051
2+
CVE-2025-68121
33
CVE-2026-25679
4-
CVE-2026-27139
54
CVE-2026-27142
65
CVE-2026-33186

pkg/azurefileplugin/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ARG ARCH
2323
RUN apt update \
2424
&& apt install -y curl \
2525
&& curl -Lso /tmp/packages-microsoft-prod-22.04.deb https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb \
26-
&& curl -Ls https://github.com/Azure/azure-storage-azcopy/releases/download/v10.32.1/azcopy_linux_${ARCH}_10.32.1.tar.gz \
26+
&& curl -Ls https://github.com/Azure/azure-storage-azcopy/releases/download/v10.32.2/azcopy_linux_${ARCH}_10.32.2.tar.gz \
2727
| tar xvzf - --strip-components=1 -C /usr/local/bin/ --wildcards "*/azcopy"
2828

2929
FROM base

test/sanity/run-test.sh

Lines changed: 1 addition & 1 deletion
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 https://github.com/Azure/azure-storage-azcopy/releases/download/v10.32.1/azcopy_linux_amd64_10.32.1.tar.gz
43+
wget -O $azcopyTarFile https://github.com/Azure/azure-storage-azcopy/releases/download/v10.32.2/azcopy_linux_amd64_10.32.2.tar.gz
4444
tar -zxvf $azcopyTarFile
4545
mv ./azcopy*/azcopy /usr/local/bin/azcopy
4646
rm -rf ./$azcopyTarFile

0 commit comments

Comments
 (0)