Skip to content

Commit 36601e7

Browse files
authored
Merge pull request #415 from andyzhangx/blobfuseCachePath
feat: set blobfuseCachePath in chart installation
2 parents 7fbeba0 + 583e504 commit 36601e7

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

charts/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ The following table lists the configurable parameters of the latest Azure Blob S
8383
| `node.metricsPort` | metrics port of csi-blob-node | 29635 |
8484
| `node.logLevel` | node driver log level | `5` |
8585
| `node.enableBlobfuseProxy` | node enable blobfuse-proxy | false |
86+
| `node.blobfuseCachePath` | blobfuse cache path(`tmp-path`) | `/mnt` |
8687
| `node.resources.livenessProbe.limits.cpu` | liveness-probe cpu limits | 100m |
8788
| `node.resources.livenessProbe.limits.memory` | liveness-probe memory limits | 100Mi |
8889
| `node.resources.livenessProbe.requests.cpu` | liveness-probe cpu requests limits | 10m |
-1 Bytes
Binary file not shown.

charts/latest/blob-csi-driver/templates/csi-blob-node.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ spec:
171171
path: /var/lib/waagent/ManagedIdentity-Settings
172172
name: msi
173173
- hostPath:
174-
path: {{ .Values.kubelet.BlobCachePath }}
174+
path: {{ .Values.node.blobfuseCachePath }}
175175
name: blob-cache
176176
{{- if eq .Values.cloud "AzureStackCloud" }}
177177
- name: ssl

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ node:
7373
metricsPort: 29635
7474
logLevel: 5
7575
enableBlobfuseProxy: false
76+
blobfuseCachePath: /mnt
7677
resources:
7778
livenessProbe:
7879
limits:
@@ -102,7 +103,6 @@ node:
102103
healthPort: 29633
103104
kubelet:
104105
linuxPath: /var/lib/kubelet
105-
BlobCachePath: /mnt
106106

107107
cloud: AzurePublicCloud
108108

0 commit comments

Comments
 (0)