Skip to content

Commit 8faa085

Browse files
committed
feat: install blobfuse 2.0.3 by default
1 parent 1eacc0d commit 8faa085

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Disclaimer: Deploying this driver manually is not an officially supported Micros
1717
### Container Images & Kubernetes Compatibility:
1818
|driver version |Image | supported k8s version | built-in blobfuse v1 version | built-in blobfuse v2 version|
1919
|----------------|------------------------------------------------------|-----------------------|------------------------------| ----------------------------|
20-
|master branch |mcr.microsoft.com/k8s/csi/blob-csi:latest | 1.21+ | 1.4.5 | 2.0.2 |
20+
|master branch |mcr.microsoft.com/k8s/csi/blob-csi:latest | 1.21+ | 1.4.5 | 2.0.3 |
2121
|v1.21.0 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.21.0 | 1.21+ | 1.4.5 | 2.0.2 |
2222
|v1.20.2 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.20.2 | 1.21+ | 1.4.5 | 2.0.2 |
2323
|v1.19.3 |mcr.microsoft.com/oss/kubernetes-csi/blob-csi:v1.19.3 | 1.21+ | 1.4.5 | 2.0.2 |
@@ -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.2"}],"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.3"}],"name":"install-blobfuse-proxy"}]}}}}'
5151
> ```
5252
>
5353
- install by [helm charts](./charts)
12 Bytes
Binary file not shown.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ node:
117117
enableBlobfuseProxy: false
118118
blobfuseProxy:
119119
installBlobfuse: true
120-
blobfuseVersion: ""
120+
blobfuseVersion: "1.4.5"
121121
installBlobfuse2: true
122-
blobfuse2Version: ""
122+
blobfuse2Version: "2.0.3"
123123
setMaxOpenFileNum: true
124124
maxOpenFileNum: "9000000"
125125
disableUpdateDB: true

deploy/csi-blob-node.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ spec:
5454
- name: INSTALL_BLOBFUSE
5555
value: "true"
5656
- name: BLOBFUSE_VERSION
57-
value: ""
57+
value: "1.4.5"
5858
- name: INSTALL_BLOBFUSE2
5959
value: "true"
6060
- name: BLOBFUSE2_VERSION
61-
value: ""
61+
value: "2.0.3"
6262
- name: SET_MAX_OPEN_FILE_NUM
6363
value: "true"
6464
- name: MAX_FILE_NUM

0 commit comments

Comments
 (0)