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
runControllerService=flag.Bool("run-controller-service", true, "If set to false then the CSI driver does not activate its controller service (default: true)")
39
-
runNodeService=flag.Bool("run-node-service", true, "If set to false then the CSI driver does not activate its node service (default: true)")
40
-
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.")
41
-
metricsPath=flag.String("metrics-path", "/metrics", "The HTTP path where prometheus metrics will be exposed. Default is `/metrics`.")
42
-
extraVolumeLabelsStr=flag.String("extra-labels", "", "Extra labels to attach to each PD created. It is a comma separated list of key value pairs like '<key1>=<value1>,<key2>=<value2>'. See https://cloud.google.com/compute/docs/labeling-resources for details")
37
+
cloudConfigFilePath=flag.String("cloud-config", "", "Path to GCE cloud provider config")
runControllerService=flag.Bool("run-controller-service", true, "If set to false then the CSI driver does not activate its controller service (default: true)")
40
+
runNodeService=flag.Bool("run-node-service", true, "If set to false then the CSI driver does not activate its node service (default: true)")
41
+
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.")
42
+
metricsPath=flag.String("metrics-path", "/metrics", "The HTTP path where prometheus metrics will be exposed. Default is `/metrics`.")
43
+
44
+
extraVolumeLabelsStr=flag.String("extra-labels", "", "Extra labels to attach to each PD created. It is a comma separated list of key value pairs like '<key1>=<value1>,<key2>=<value2>'. See https://cloud.google.com/compute/docs/labeling-resources for details")
45
+
43
46
attachDiskBackoffDuration=flag.Duration("attach-disk-backoff-duration", 5*time.Second, "Duration for attachDisk backoff")
44
47
attachDiskBackoffFactor=flag.Float64("attach-disk-backoff-factor", 0.0, "Factor for attachDisk backoff")
45
48
attachDiskBackoffJitter=flag.Float64("attach-disk-backoff-jitter", 0.0, "Jitter for attachDisk backoff")
@@ -50,7 +53,10 @@ var (
50
53
waitForOpBackoffJitter=flag.Float64("wait-op-backoff-jitter", 0.0, "Jitter for wait for operation backoff")
51
54
waitForOpBackoffSteps=flag.Int("wait-op-backoff-steps", 100, "Steps for wait for operation backoff")
52
55
waitForOpBackoffCap=flag.Duration("wait-op-backoff-cap", 0, "Cap for wait for operation backoff")
0 commit comments