Skip to content

Commit a210d2d

Browse files
authored
Merge pull request #576 from andyzhangx/blobfuse-1.4.2
feat: blobfuse v1.4.2 support
2 parents ea7bb1a + 018a70f commit a210d2d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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.19+ | 1.4.1 |
18+
|master branch |mcr.microsoft.com/k8s/csi/blob-csi:latest | 1.19+ | 1.4.2 |
1919
|v1.7.0 |mcr.microsoft.com/k8s/csi/blob-csi:v1.7.0 | 1.19+ | 1.4.1 |
2020
|v1.6.0 |mcr.microsoft.com/k8s/csi/blob-csi:v1.6.0 | 1.18+ | 1.4.1 |
2121
|v1.5.0 |mcr.microsoft.com/k8s/csi/blob-csi:v1.5.0 | 1.18+ | 1.4.1 |

charts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The following table lists the configurable parameters of the latest Azure Blob S
126126
| `node.logLevel` | node driver log level | `5` |
127127
| `node.enableBlobfuseProxy` | enable blobfuse-proxy on agent node | `false` |
128128
| `node.blobfuseProxy.installBlobfuse` | whether install blobfuse on agent node| `true` |
129-
| `node.blobfuseProxy.blobfuseVersion` | installed blobfuse version on agent node| `1.4.1` |
129+
| `node.blobfuseProxy.blobfuseVersion` | installed blobfuse version on agent node| `1.4.2` |
130130
| `node.blobfuseProxy.setMaxOpenFileNum` | whether set max open file num on agent node| `true` |
131131
| `node.blobfuseProxy.maxOpenFileNum` | max open file num on agent node| `9000000` |
132132
| `node.blobfuseProxy.removeMlocate` | whether remove `/etc/cron.daily/mlocate` (saving storage account list usage) | `true` |
0 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
@@ -117,7 +117,7 @@ node:
117117
enableBlobfuseProxy: false
118118
blobfuseProxy:
119119
installBlobfuse: true
120-
blobfuseVersion: 1.4.1
120+
blobfuseVersion: 1.4.2
121121
setMaxOpenFileNum: true
122122
maxOpenFileNum: "9000000"
123123
removeMlocate: true

deploy/blobfuse-proxy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ spec:
4747
INSTALL_BLOBFUSE=${INSTALL_BLOBFUSE:-true}
4848
if (( "${INSTALL_BLOBFUSE}" == "true" ))
4949
then
50-
dpkg -i /tmp/packages-microsoft-prod.deb && apt-get install -y blobfuse=${BLOBFUSE_VERSION}
50+
dpkg -i /tmp/packages-microsoft-prod.deb && apt update && apt-get install -y blobfuse=${BLOBFUSE_VERSION}
5151
fi
5252
dpkg -i /tmp/blobfuse-proxy.deb
5353
rm -f /tmp/packages-microsoft-prod.deb /tmp/blobfuse-proxy.deb
@@ -80,7 +80,7 @@ spec:
8080
- name: INSTALL_BLOBFUSE
8181
value: "true"
8282
- name: BLOBFUSE_VERSION
83-
value: 1.4.1
83+
value: 1.4.2
8484
- name: SET_MAX_OPEN_FILE_NUM
8585
value: "true"
8686
- name: MAX_FILE_NUM

0 commit comments

Comments
 (0)