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: set blobfuseCachePath in chart installation #415

Merged
merged 1 commit into from
May 6, 2021
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
1 change: 1 addition & 0 deletions charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ The following table lists the configurable parameters of the latest Azure Blob S
| `node.metricsPort` | metrics port of csi-blob-node | 29635 |
| `node.logLevel` | node driver log level | `5` |
| `node.enableBlobfuseProxy` | node enable blobfuse-proxy | false |
| `node.blobfuseCachePath` | blobfuse cache path(`tmp-path`) | `/mnt` |
| `node.resources.livenessProbe.limits.cpu` | liveness-probe cpu limits | 100m |
| `node.resources.livenessProbe.limits.memory` | liveness-probe memory limits | 100Mi |
| `node.resources.livenessProbe.requests.cpu` | liveness-probe cpu requests limits | 10m |
Expand Down
Binary file modified charts/latest/blob-csi-driver-v1.2.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion charts/latest/blob-csi-driver/templates/csi-blob-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ spec:
path: /var/lib/waagent/ManagedIdentity-Settings
name: msi
- hostPath:
path: {{ .Values.kubelet.BlobCachePath }}
path: {{ .Values.node.blobfuseCachePath }}
name: blob-cache
{{- if eq .Values.cloud "AzureStackCloud" }}
- name: ssl
Expand Down
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 @@ -73,6 +73,7 @@ node:
metricsPort: 29635
logLevel: 5
enableBlobfuseProxy: false
blobfuseCachePath: /mnt
resources:
livenessProbe:
limits:
Expand Down Expand Up @@ -102,7 +103,6 @@ node:
healthPort: 29633
kubelet:
linuxPath: /var/lib/kubelet
BlobCachePath: /mnt

cloud: AzurePublicCloud

Expand Down