You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -148,6 +148,7 @@ The following table lists the configurable parameters of the latest Azure Blob S
148
148
| `linux.distro` | configure ssl certificates for different Linux distribution(available values: `debian`, `fedora`) | `debian`
149
149
| `workloadIdentity.clientID` | client ID of workload identity | ''
150
150
| `workloadIdentity.tenantID` | [optional] If the AAD application or user-assigned managed identity is not in the same tenant as the cluster then set tenantID with the AAD application or user-assigned managed identity tenant ID | ''
151
+
| `node.enableAznfsMount` | enable [AZNFS mount helper](https://github.com/Azure/AZNFS-mount/) for NFS protocol | true
151
152
152
153
## troubleshooting
153
154
- Add `--wait -v=5 --debug` in `helm install` command to get detailed error
Copy file name to clipboardExpand all lines: pkg/blobplugin/main.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,7 @@ var (
58
58
kubeAPIQPS=flag.Float64("kube-api-qps", 25.0, "QPS to use while communicating with the kubernetes apiserver.")
59
59
kubeAPIBurst=flag.Int("kube-api-burst", 50, "Burst to use while communicating with the kubernetes apiserver.")
60
60
appendMountErrorHelpLink=flag.Bool("append-mount-error-help-link", true, "Whether to include a link for help with mount errors when a mount error occurs.")
61
+
enableAznfsMount=flag.Bool("enable-aznfs-mount", true, "replace nfs mount with aznfs mount")
0 commit comments