Skip to content

Commit ffd9952

Browse files
authored
Merge pull request #1010 from cvvz/set-enable-aznfs-mount-default-false
chore: set enable-aznfs-mount default value as false
2 parents 0b64fd2 + 9fc3881 commit ffd9952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/blobplugin/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ var (
5454
kubeAPIQPS = flag.Float64("kube-api-qps", 25.0, "QPS to use while communicating with the kubernetes apiserver.")
5555
kubeAPIBurst = flag.Int("kube-api-burst", 50, "Burst to use while communicating with the kubernetes apiserver.")
5656
appendMountErrorHelpLink = flag.Bool("append-mount-error-help-link", true, "Whether to include a link for help with mount errors when a mount error occurs.")
57-
enableAznfsMount = flag.Bool("enable-aznfs-mount", true, "replace nfs mount with aznfs mount")
57+
enableAznfsMount = flag.Bool("enable-aznfs-mount", false, "replace nfs mount with aznfs mount")
5858
)
5959

6060
func main() {

0 commit comments

Comments
 (0)