Skip to content

Commit 3aeba81

Browse files
committed
fix: NFSv3 client protocol not suported issue
1 parent fb7cfa3 commit 3aeba81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/blobplugin/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ COPY --from=builder /go/src/sigs.k8s.io/blob-csi-driver/_output/blobplugin /blob
2525
RUN apt-get update && clean-install ca-certificates pkg-config libfuse-dev cmake libcurl4-gnutls-dev libgnutls28-dev uuid-dev libgcrypt20-dev wget
2626
RUN wget -O /tmp/packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb && dpkg -i /tmp/packages-microsoft-prod.deb && apt-get update && apt install blobfuse fuse -y && rm -f /tmp/packages-microsoft-prod.deb
2727
RUN apt remove wget -y
28-
# this is a workaround to install nfs-common and don't quit with error
29-
RUN apt update && apt install mount nfs-common -y || true
28+
# this is a workaround to install nfs-common & nfs-kernel-server and don't quit with error
29+
RUN apt update && apt install nfs-common nfs-kernel-server -y || true
3030
LABEL maintainers="andyzhangx"
3131
LABEL description="Azure Blob Storage CSI driver"
3232

0 commit comments

Comments
 (0)