From f8c06aaf9e9852b81af8e1577017697da1d4ab23 Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Tue, 8 Oct 2024 14:21:49 +0000 Subject: [PATCH] fix: nfs mount failure on arm64 node --- pkg/blobplugin/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/blobplugin/Dockerfile b/pkg/blobplugin/Dockerfile index 485ecd3c4..ccfdd6282 100644 --- a/pkg/blobplugin/Dockerfile +++ b/pkg/blobplugin/Dockerfile @@ -28,8 +28,8 @@ ARG aznfsVer=2.0.7 ARG anzfsArch=x86_64 RUN if [ "$ARCH" = "arm64" ]; then \ anzfsArch="arm64"; \ - 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 + fi \ + && 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 \