From ba9b1f139104c90c82ce9fb1736955e640224b39 Mon Sep 17 00:00:00 2001 From: weizhichen Date: Thu, 7 Sep 2023 02:04:02 +0000 Subject: [PATCH] set enable-aznfs-mount default value as false --- pkg/blobplugin/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/blobplugin/main.go b/pkg/blobplugin/main.go index 4e32565b0..004b7a820 100644 --- a/pkg/blobplugin/main.go +++ b/pkg/blobplugin/main.go @@ -58,7 +58,7 @@ var ( kubeAPIQPS = flag.Float64("kube-api-qps", 25.0, "QPS to use while communicating with the kubernetes apiserver.") kubeAPIBurst = flag.Int("kube-api-burst", 50, "Burst to use while communicating with the kubernetes apiserver.") appendMountErrorHelpLink = flag.Bool("append-mount-error-help-link", true, "Whether to include a link for help with mount errors when a mount error occurs.") - enableAznfsMount = flag.Bool("enable-aznfs-mount", true, "replace nfs mount with aznfs mount") + enableAznfsMount = flag.Bool("enable-aznfs-mount", false, "replace nfs mount with aznfs mount") ) func main() {