Skip to content

Commit 3dea994

Browse files
authored
Merge pull request #734 from andyzhangx/upgrade-blobfuse-v1.4.5
feat: upgrade blobfuse install version as v1.4.5
2 parents 24efea8 + e163b4b commit 3dea994

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This driver allows Kubernetes to access Azure Storage through one of following m
1515
### Container Images & Kubernetes Compatibility:
1616
|driver version |Image | supported k8s version | built-in blobfuse version |
1717
|----------------|------------------------------------------------------|-----------------------|---------------------------|
18-
|master branch |mcr.microsoft.com/k8s/csi/blob-csi:latest | 1.20+ | 1.4.4 |
18+
|master branch |mcr.microsoft.com/k8s/csi/blob-csi:latest | 1.20+ | 1.4.5 |
1919
|v1.15.0 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.15.0 | 1.20+ | 1.4.4 |
2020
|v1.14.0 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.14.0 | 1.20+ | 1.4.4 |
2121
|v1.13.0 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.13.0 | 1.20+ | 1.4.3 |
-1 Bytes
Binary file not shown.

charts/latest/blob-csi-driver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ node:
118118
enableBlobfuseProxy: false
119119
blobfuseProxy:
120120
installBlobfuse: true
121-
blobfuseVersion: 1.4.4
121+
blobfuseVersion: 1.4.5
122122
setMaxOpenFileNum: true
123123
maxOpenFileNum: "9000000"
124124
disableUpdateDB: true

deploy/csi-blob-node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ spec:
5151
- name: INSTALL_BLOBFUSE_PROXY
5252
value: "true"
5353
- name: BLOBFUSE_VERSION
54-
value: 1.4.4
54+
value: 1.4.5
5555
- name: SET_MAX_OPEN_FILE_NUM
5656
value: "true"
5757
- name: MAX_FILE_NUM

pkg/blobfuse-proxy/init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ then
2929
cp /blobfuse-proxy/packages-microsoft-prod.deb /host/etc/
3030
$HOST_CMD dpkg -i /etc/packages-microsoft-prod.deb && \
3131
$HOST_CMD apt update && \
32-
$HOST_CMD apt-get install -y blobfuse="${BLOBFUSE_VERSION}" && \
32+
$HOST_CMD apt-get install -y fuse blobfuse="${BLOBFUSE_VERSION}" && \
3333
$HOST_CMD rm -f /etc/packages-microsoft-prod.deb
3434
fi
3535

0 commit comments

Comments
 (0)