Skip to content

Commit

Permalink
Merge pull request #1735 from andyzhangx/blobfuse2.4.0-1.25
Browse files Browse the repository at this point in the history
[release-1.25] feat: install blobfuse 2.4.0 as default version
  • Loading branch information
andyzhangx authored Dec 5, 2024
2 parents c83e468 + df1bd42 commit 0e9e7b3
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ This option does not depend on cloud provider config file, supports cross subscr
>
> Execute following command to install a specific version of blobfuse v2 once driver is running on the agent node:
> ```console
> 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.3.2"}],"name":"install-blobfuse-proxy"}]}}}}'
> 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.4.0"}],"name":"install-blobfuse-proxy"}]}}}}'
> ```
>
> Execute following command to install a specific version of blobfuse v1 once driver is running on the agent node:
Expand Down
Binary file modified charts/latest/blob-csi-driver-1.25.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion charts/latest/blob-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ node:
installBlobfuse: false
blobfuseVersion: "1.4.5"
installBlobfuse2: true
blobfuse2Version: "2.3.2"
blobfuse2Version: "2.4.0"
setMaxOpenFileNum: true
maxOpenFileNum: "9000000"
disableUpdateDB: true
Expand Down
Binary file modified charts/v1.25.0/blob-csi-driver-1.25.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion charts/v1.25.0/blob-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ node:
installBlobfuse: true
blobfuseVersion: "1.4.5"
installBlobfuse2: true
blobfuse2Version: "2.3.2"
blobfuse2Version: "2.4.0"
setMaxOpenFileNum: true
maxOpenFileNum: "9000000"
disableUpdateDB: true
Expand Down
2 changes: 1 addition & 1 deletion deploy/csi-blob-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
- name: INSTALL_BLOBFUSE2
value: "true"
- name: BLOBFUSE2_VERSION
value: "2.3.2"
value: "2.4.0"
- name: SET_MAX_OPEN_FILE_NUM
value: "true"
- name: MAX_FILE_NUM
Expand Down
2 changes: 1 addition & 1 deletion deploy/v1.25.0/csi-blob-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
- name: INSTALL_BLOBFUSE2
value: "true"
- name: BLOBFUSE2_VERSION
value: "2.3.2"
value: "2.4.0"
- name: SET_MAX_OPEN_FILE_NUM
value: "true"
- name: MAX_FILE_NUM
Expand Down

0 comments on commit 0e9e7b3

Please sign in to comment.