Skip to content

Commit 7c1755d

Browse files
authored
Merge pull request #1412 from k8s-infra-cherrypick-robot/cherry-pick-1409-to-release-1.23
[release-1.23] feat: upgrade to azcopy v10.25.0 for volume clone feature
2 parents 6e8d125 + 4626dd2 commit 7c1755d

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
with:
1414
check_filenames: true
1515
skip: ./.git,./.github/workflows/codespell.yml,.git,*.png,*.jpg,*.svg,*.sum,./vendor,go.sum,./release-tools/prow.sh,./pkg/lib/iscsi/
16-
ignore_words_list: "AKS,aks,ro"
16+
ignore_words_list: "AKS,aks,ro,NotIn"

.github/workflows/trivy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Go 1.x
1313
uses: actions/setup-go@v4
1414
with:
15-
go-version: 1.22.3
15+
go-version: 1.22.4
1616
id: go
1717

1818
- name: Checkout code

.trivyignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
CVE-2023-45288
1+
CVE-2024-24789
2+
CVE-2024-24790

pkg/blobplugin/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ else \
4444
RUN tar xvzf aznfs.tar.gz -C / --keep-directory-symlink && rm aznfs.tar.gz
4545

4646
# install azcopy
47-
ARG azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.24.0-20240326/azcopy_linux_amd64_10.24.0.tar.gz
47+
ARG azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.25.0-20240522/azcopy_linux_amd64_10.25.0.tar.gz
4848
RUN if [ "$ARCH" == "arm64" ] ; then \
49-
azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.24.0-20240326/azcopy_linux_arm64_10.24.0.tar.gz; fi
49+
azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.25.0-20240522/azcopy_linux_arm64_10.25.0.tar.gz; fi
5050
RUN wget -O azcopy.tar.gz ${azcopyURL} && \
5151
tar xvzf azcopy.tar.gz -C . && rm azcopy.tar.gz && \
5252
mv ./azcopy_linux_$ARCH_*/azcopy /usr/local/bin/azcopy && \

test/sanity/run-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ azcopyPath="/usr/local/bin/azcopy"
3636
if [ ! -f "$azcopyPath" ]; then
3737
azcopyTarFile="azcopy.tar.gz"
3838
echo 'Downloading azcopy...'
39-
wget -O $azcopyTarFile azcopyvnext.azureedge.net/releases/release-10.24.0-20240326/azcopy_linux_amd64_10.24.0.tar.gz
39+
wget -O $azcopyTarFile azcopyvnext.azureedge.net/releases/release-10.25.0-20240522/azcopy_linux_amd64_10.25.0.tar.gz
4040
tar -zxvf $azcopyTarFile
4141
mv ./azcopy*/azcopy /usr/local/bin/azcopy
4242
rm -rf ./$azcopyTarFile

0 commit comments

Comments
 (0)