Skip to content

Commit 12cc8d0

Browse files
authored
Merge pull request #981 from andyzhangx/upgrade-blobfuse-2.0.4-1.22
[release-1.22] feat: install blobfuse 2.0.4 as default version
2 parents c76b944 + 8f19639 commit 12cc8d0

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ Disclaimer: Deploying this driver manually is not an officially supported Micros
1515
### Project status: GA
1616

1717
### Container Images & Kubernetes Compatibility:
18-
|driver version |Image | supported k8s version | built-in blobfuse v1 version | built-in blobfuse v2 version|
19-
|----------------|------------------------------------------------------|-----------------------|------------------------------| ----------------------------|
20-
|master branch |mcr.microsoft.com/k8s/csi/blob-csi:latest | 1.21+ | 1.4.5 | 2.0.3 |
21-
|v1.22.1 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.22.1 | 1.21+ | 1.4.5 | 2.0.3 |
22-
|v1.21.2 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.21.2 | 1.21+ | 1.4.5 | 2.0.3 |
23-
|v1.20.2 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.20.2 | 1.21+ | 1.4.5 | 2.0.3 |
18+
|driver version |Image | supported k8s version |
19+
|----------------|------------------------------------------------------|-----------------------|
20+
|master branch |mcr.microsoft.com/k8s/csi/blob-csi:latest | 1.21+ |
21+
|v1.22.1 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.22.1 | 1.21+ |
22+
|v1.21.2 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.21.2 | 1.21+ |
23+
|v1.20.2 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.20.2 | 1.21+ |
2424

2525
### Driver parameters
2626
Please refer to `blob.csi.azure.com` [driver parameters](./docs/driver-parameters.md)
@@ -47,7 +47,7 @@ This option does not depend on cloud provider config file, supports cross subscr
4747
>
4848
> To install specific blobfuse v2 version, run following command directly after driver is running on the agent node:
4949
> ```console
50-
> kubectl patch daemonset csi-blob-node -n kube-system -p '{"spec":{"template":{"spec":{"initContainers":[{"env":[{"name":"INSTALL_BLOBFUSE2","value":"true"},{"name":"BLOBFUSE2_VERSION","value":"2.0.3"}],"name":"install-blobfuse-proxy"}]}}}}'
50+
> kubectl patch daemonset csi-blob-node -n kube-system -p '{"spec":{"template":{"spec":{"initContainers":[{"env":[{"name":"INSTALL_BLOBFUSE2","value":"true"},{"name":"BLOBFUSE2_VERSION","value":"2.0.4"}],"name":"install-blobfuse-proxy"}]}}}}'
5151
> ```
5252
>
5353
- install by [helm charts](./charts)
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
@@ -119,7 +119,7 @@ node:
119119
installBlobfuse: true
120120
blobfuseVersion: "1.4.5"
121121
installBlobfuse2: true
122-
blobfuse2Version: "2.0.3"
122+
blobfuse2Version: "2.0.4"
123123
setMaxOpenFileNum: true
124124
maxOpenFileNum: "9000000"
125125
disableUpdateDB: true

deploy/csi-blob-node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
- name: INSTALL_BLOBFUSE2
5959
value: "true"
6060
- name: BLOBFUSE2_VERSION
61-
value: "2.0.3"
61+
value: "2.0.4"
6262
- name: SET_MAX_OPEN_FILE_NUM
6363
value: "true"
6464
- name: MAX_FILE_NUM

docs/csi-debug.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,12 @@ change below deployment config, e.g.
7676
imagePullPolicy: Always
7777
```
7878

79-
### get blobfuse driver version
79+
### get blobfuse driver version on the node
8080
```console
81-
kubectl exec -it csi-blob-node-fmbqw -n kube-system -c blob -- sh
82-
blobfuse -v
81+
blobfuse2 -v
8382
```
8483
<pre>
85-
blobfuse 1.2.4
84+
blobfuse2 version 2.0.4
8685
</pre>
8786

8887
### check blobfuse mount on the agent node

0 commit comments

Comments
 (0)