Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add chart parameter for install-blobfuse-proxy ability to disable setReadAheadSize #1717

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified charts/latest/blob-csi-driver-v0.0.0.tgz
Binary file not shown.
2 changes: 2 additions & 0 deletions charts/latest/blob-csi-driver/templates/csi-blob-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ spec:
value: "{{ .Values.linux.kubelet }}"
- name: MIGRATE_K8S_REPO
value: "{{ .Values.node.blobfuseProxy.migrateK8sRepo }}"
- name: SET_READ_AHEAD_SIZE
value: "{{ .Values.node.blobfuseProxy.setReadAheadSize }}"
volumeMounts:
- name: host-usr
mountPath: /host/usr
Expand Down
1 change: 1 addition & 0 deletions charts/latest/blob-csi-driver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ node:
maxOpenFileNum: "9000000"
disableUpdateDB: true
migrateK8sRepo: false
setReadAheadSize: true
blobfuseCachePath: /mnt
appendTimeStampInCacheDir: false
mountPermissions: 0777
Expand Down
Loading