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
computeEndpoint=flag.String("compute-endpoint", "", "If set, used as the endpoint for the GCE API.")
44
42
runControllerService=flag.Bool("run-controller-service", true, "If set to false then the CSI driver does not activate its controller service (default: true)")
45
43
runNodeService=flag.Bool("run-node-service", true, "If set to false then the CSI driver does not activate its node service (default: true)")
46
44
httpEndpoint=flag.String("http-endpoint", "", "The TCP network address where the prometheus metrics endpoint will listen (example: `:8080`). The default is empty string, which means metrics endpoint is disabled.")
@@ -69,13 +67,12 @@ var (
69
67
70
68
maxConcurrentFormatAndMount=flag.Int("max-concurrent-format-and-mount", 1, "If set then format and mount operations are serialized on each node. This is stronger than max-concurrent-format as it includes fsck and other mount operations")
71
69
formatAndMountTimeout=flag.Duration("format-and-mount-timeout", 1*time.Minute, "The maximum duration of a format and mount operation before another such operation will be started. Used only if --serialize-format-and-mount")
72
-
fallbackRequisiteZonesFlag=flag.String("fallback-requisite-zones", "", "Comma separated list of requisite zones that will be used if there are not sufficient zones present in requisite topologies when provisioning a disk")
73
70
74
-
enableStoragePoolsFlag=flag.Bool("enable-storage-pools", false, "If set to true, the CSI Driver will allow volumes to be provisioned in Storage Pools")
fallbackRequisiteZonesFlag=flag.String("fallback-requisite-zones", "", "Comma separated list of requisite zones that will be used if there are not sufficient zones present in requisite topologies when provisioning a disk")
72
+
73
+
enableStoragePoolsFlag=flag.Bool("enable-storage-pools", false, "If set to true, the CSI Driver will allow volumes to be provisioned in Storage Pools")
74
+
75
+
versionstring
79
76
)
80
77
81
78
const (
@@ -88,16 +85,13 @@ func init() {
88
85
// Use V(4) for general debug information logging
89
86
// Use V(5) for GCE Cloud Provider Call informational logging
90
87
// Use V(6) for extra repeated/polling information
0 commit comments