Skip to content

Commit

Permalink
Merge pull request #1624 from k8s-infra-cherrypick-robot/cherry-pick-…
Browse files Browse the repository at this point in the history
…1622-to-release-1.23

[release-1.23] fix: nfs mount failure on arm64 node
  • Loading branch information
k8s-ci-robot authored Oct 10, 2024
2 parents e17d45b + 0b0c162 commit 9bf3eaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/blobplugin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ RUN apt update \

# install aznfs
ARG aznfsVer=2.0.7
ARG anzfsArch=x86_64
RUN if [ "$ARCH" = "arm64" ]; then \
anzfsArch="arm64"; \
curl -Ls https://github.com/Azure/AZNFS-mount/releases/download/${aznfsVer}/aznfs-${aznfsVer}-1.arm64.tar.gz | tar xvzf - -C / --keep-directory-symlink; \
else \
curl -Ls https://github.com/Azure/AZNFS-mount/releases/download/${aznfsVer}/aznfs-${aznfsVer}-1.x86_64.tar.gz | tar xvzf - -C / --keep-directory-symlink; \
fi
RUN curl -Ls https://github.com/Azure/AZNFS-mount/releases/download/${aznfsVer}/aznfs-${aznfsVer}-1.${anzfsArch}.tar.gz | tar xvzf - -C / --keep-directory-symlink

# install azcopy
RUN curl -Ls https://azcopyvnext.azureedge.net/releases/release-10.26.0-20240731/azcopy_linux_${ARCH}_10.26.0.tar.gz \
Expand Down

0 comments on commit 9bf3eaa

Please sign in to comment.