Skip to content

Commit b0b1be9

Browse files
authored
Merge pull request #2622 from k8s-infra-cherrypick-robot/cherry-pick-2620-to-release-1.33
[release-1.33] fix: aznfs package install failure on arm64 node
2 parents 68be32f + d953b5f commit b0b1be9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/azurefile-proxy/init.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,10 @@ if [ "$DISTRIBUTION" != "azurelinux" ] && [ "$DISTRIBUTION" != "ubuntu" ];then
3737
exit 0
3838
fi
3939

40+
if [ "$ARCH" = "aarch64" ];then
41+
echo "aznfs-mount is not supported on architecture: $ARCH"
42+
exit 0
43+
fi
44+
4045
. ./azurefile-proxy/install-proxy.sh
4146

0 commit comments

Comments
 (0)