File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ This driver allows Kubernetes to access Azure Storage through one of following m
15
15
### Container Images & Kubernetes Compatibility:
16
16
| driver version | Image | supported k8s version | built-in blobfuse version |
17
17
| ----------------| -------------------------------------------| -----------------------| ---------------------------|
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 |
19
19
| v1.7.0 | mcr.microsoft.com/k8s/csi/blob-csi: v1 .7.0 | 1.19+ | 1.4.1 |
20
20
| v1.6.0 | mcr.microsoft.com/k8s/csi/blob-csi: v1 .6.0 | 1.18+ | 1.4.1 |
21
21
| v1.5.0 | mcr.microsoft.com/k8s/csi/blob-csi: v1 .5.0 | 1.18+ | 1.4.1 |
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ The following table lists the configurable parameters of the latest Azure Blob S
126
126
| ` node.logLevel ` | node driver log level | ` 5 ` |
127
127
| ` node.enableBlobfuseProxy ` | enable blobfuse-proxy on agent node | ` false ` |
128
128
| ` 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 ` |
130
130
| ` node.blobfuseProxy.setMaxOpenFileNum ` | whether set max open file num on agent node| ` true ` |
131
131
| ` node.blobfuseProxy.maxOpenFileNum ` | max open file num on agent node| ` 9000000 ` |
132
132
| ` node.blobfuseProxy.removeMlocate ` | whether remove ` /etc/cron.daily/mlocate ` (saving storage account list usage) | ` true ` |
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ node:
117
117
enableBlobfuseProxy : false
118
118
blobfuseProxy :
119
119
installBlobfuse : true
120
- blobfuseVersion : 1.4.1
120
+ blobfuseVersion : 1.4.2
121
121
setMaxOpenFileNum : true
122
122
maxOpenFileNum : " 9000000"
123
123
removeMlocate : true
Original file line number Diff line number Diff line change 47
47
INSTALL_BLOBFUSE=${INSTALL_BLOBFUSE:-true}
48
48
if (( "${INSTALL_BLOBFUSE}" == "true" ))
49
49
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}
51
51
fi
52
52
dpkg -i /tmp/blobfuse-proxy.deb
53
53
rm -f /tmp/packages-microsoft-prod.deb /tmp/blobfuse-proxy.deb
80
80
- name : INSTALL_BLOBFUSE
81
81
value : " true"
82
82
- name : BLOBFUSE_VERSION
83
- value : 1.4.1
83
+ value : 1.4.2
84
84
- name : SET_MAX_OPEN_FILE_NUM
85
85
value : " true"
86
86
- name : MAX_FILE_NUM
You can’t perform that action at this time.
0 commit comments