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
fs.BoolVar(&o.EnableGetVolumeStats, "enable-get-volume-stats", true, "allow GET_VOLUME_STATS on agent node")
68
+
fs.BoolVar(&o.AppendMountErrorHelpLink, "append-mount-error-help-link", true, "Whether to include a link for help with mount errors when a mount error occurs.")
fs.StringVar(&o.FSGroupChangePolicy, "fsgroup-change-policy", "", "indicates how the volume's ownership will be changed by the driver, OnRootMismatch is the default value")
71
+
fs.Float64Var(&o.KubeAPIQPS, "kube-api-qps", 25.0, "QPS to use while communicating with the kubernetes apiserver.")
72
+
fs.IntVar(&o.KubeAPIBurst, "kube-api-burst", 50, "Burst to use while communicating with the kubernetes apiserver.")
73
+
fs.BoolVar(&o.EnableWindowsHostProcess, "enable-windows-host-process", false, "enable windows host process")
74
+
fs.BoolVar(&o.AppendClosetimeoOption, "append-closetimeo-option", false, "Whether appending closetimeo=0 option to smb mount command")
75
+
fs.BoolVar(&o.AppendNoShareSockOption, "append-nosharesock-option", true, "Whether appending nosharesock option to smb mount command")
76
+
fs.BoolVar(&o.AppendNoResvPortOption, "append-noresvport-option", true, "Whether appending noresvport option to nfs mount command")
77
+
fs.BoolVar(&o.AppendActimeoOption, "append-actimeo-option", true, "Whether appending actimeo=0 option to nfs mount command")
78
+
fs.IntVar(&o.SkipMatchingTagCacheExpireInMinutes, "skip-matching-tag-cache-expire-in-minutes", 30, "The cache expire time in minutes for skipMatchingTagCache")
79
+
fs.IntVar(&o.VolStatsCacheExpireInMinutes, "vol-stats-cache-expire-in-minutes", 10, "The cache expire time in minutes for volume stats cache")
80
+
fs.BoolVar(&o.PrintVolumeStatsCallLogs, "print-volume-stats-call-logs", false, "Whether to print volume statfs call logs with log level 2")
81
+
fs.IntVar(&o.SasTokenExpirationMinutes, "sas-token-expiration-minutes", 1440, "sas token expiration minutes during volume cloning")
82
+
fs.StringVar(&o.KubeConfig, "kubeconfig", "", "Absolute path to the kubeconfig file. Required only when running out of cluster.")
allowInlineVolumeKeyAccessWithIdentity=flag.Bool("allow-inline-volume-key-access-with-identity", false, "allow accessing storage account key using cluster identity for inline volume")
54
-
fsGroupChangePolicy=flag.String("fsgroup-change-policy", "", "indicates how the volume's ownership will be changed by the driver, OnRootMismatch is the default value")
55
-
enableVHDDiskFeature=flag.Bool("enable-vhd", true, "enable VHD disk feature (experimental)")
56
-
kubeAPIQPS=flag.Float64("kube-api-qps", 25.0, "QPS to use while communicating with the kubernetes apiserver.")
57
-
kubeAPIBurst=flag.Int("kube-api-burst", 50, "Burst to use while communicating with the kubernetes apiserver.")
58
-
appendMountErrorHelpLink=flag.Bool("append-mount-error-help-link", true, "Whether to include a link for help with mount errors when a mount error occurs.")
59
-
enableWindowsHostProcess=flag.Bool("enable-windows-host-process", false, "enable windows host process")
60
-
appendClosetimeoOption=flag.Bool("append-closetimeo-option", false, "Whether appending closetimeo=0 option to smb mount command")
61
-
appendNoShareSockOption=flag.Bool("append-nosharesock-option", true, "Whether appending nosharesock option to smb mount command")
62
-
appendNoResvPortOption=flag.Bool("append-noresvport-option", true, "Whether appending noresvport option to nfs mount command")
63
-
appendActimeoOption=flag.Bool("append-actimeo-option", true, "Whether appending actimeo=0 option to nfs mount command")
64
-
skipMatchingTagCacheExpireInMinutes=flag.Int("skip-matching-tag-cache-expire-in-minutes", 30, "The cache expire time in minutes for skipMatchingTagCache")
65
-
volStatsCacheExpireInMinutes=flag.Int("vol-stats-cache-expire-in-minutes", 10, "The cache expire time in minutes for volume stats cache")
66
-
printVolumeStatsCallLogs=flag.Bool("print-volume-stats-call-logs", false, "Whether to print volume statfs call logs with log level 2")
67
-
sasTokenExpirationMinutes=flag.Int("sas-token-expiration-minutes", 1440, "sas token expiration minutes during volume cloning")
42
+
version=flag.Bool("version", false, "Print the version and exit.")
43
+
metricsAddress=flag.String("metrics-address", "", "export the metrics")
0 commit comments