Skip to content

Commit 7d8f5df

Browse files
authored
Merge pull request #1206 from k8s-infra-cherrypick-robot/cherry-pick-1203-to-release-1.22
[release-1.22] feat: upgrade to aznfs 2.0.3 version for nfs mount
2 parents 354d960 + 8dbfc47 commit 7d8f5df

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pkg/blobplugin/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@ RUN chmod +x /blobfuse-proxy/init.sh && \
3232
RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && clean-install ca-certificates uuid-dev util-linux mount udev wget e2fsprogs nfs-common netbase procps conntrack iptables bind9-host iproute2 bash netcat-traditional sysvinit-utils kmod
3333

3434
# install aznfs
35+
ARG aznfsVer=2.0.3
3536
RUN if [ "$ARCH" = "amd64" ] ; then \
36-
wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/2.0.1/aznfs-2.0.1-1.x86_64.tar.gz; \
37+
wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/${aznfsVer}/aznfs-${aznfsVer}-1.x86_64.tar.gz; \
3738
else \
38-
wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/2.0.1/aznfs-2.0.1-1.arm64.tar.gz;fi
39+
wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/${aznfsVer}/aznfs-${aznfsVer}-1.arm64.tar.gz;fi
3940
RUN tar xvzf aznfs.tar.gz -C / --keep-directory-symlink && rm aznfs.tar.gz
4041

4142
RUN if [ "$ARCH" = "amd64" ] ; then \

0 commit comments

Comments
 (0)