Skip to content

Commit 3e300d3

Browse files
committed
fix
1 parent 41a0ebd commit 3e300d3

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed
19 Bytes
Binary file not shown.

charts/latest/azurefile-csi-driver/templates/csi-azurefile-node.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ spec:
8686
env:
8787
- name: DEBIAN_FRONTEND
8888
value: "noninteractive"
89+
- name: AZNFS_NONINTERACTIVE_INSTALL
90+
value: "1"
8991
- name: INSTALL_AZUREFILE_PROXY
9092
value: "{{ .Values.node.azurefileProxy.enabled }}"
9193
- name: INSTALL_AZNFS_MOUNT

pkg/azurefile-proxy/install-proxy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ if [ "${INSTALL_AZNFS_MOUNT}" = "true" ];then
3636
$HOST_CMD apt-get install -y aznfs="$AZNFS_VERSION"
3737
echo "aznfs-mount installed"
3838
elif [ "$DISTRIBUTION" = "azurelinux" ];then # install aznfs-mount on azure linux 3.0
39-
AZNFS_VERSION="0.1.526"
39+
AZNFS_VERSION="0.1.548"
4040
echo "install aznfs v$AZNFS_VERSION...."
4141
$HOST_CMD curl -fsSL https://github.com/Azure/AZNFS-mount/releases/download/$AZNFS_VERSION/aznfs_install.sh | $HOST_CMD bash
4242
fi

0 commit comments

Comments
 (0)