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
runNodeService=flag.Bool("run-node-service", true, "If set to false then the CSI driver does not activate its node service (default: true)")
42
43
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.")
43
44
metricsPath=flag.String("metrics-path", "/metrics", "The HTTP path where prometheus metrics will be exposed. Default is `/metrics`.")
45
+
grpcLogCharCap=flag.Int("grpc-log-char-cap", 10000, "The maximum amount of characters logged for every grpc responses")
44
46
45
-
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")
47
+
errorBackoffInitialDurationMs=flag.Int("backoff-initial-duration-ms", 200, "The amount of ms for the initial duration of the backoff condition for controller publish/unpublish CSI operations. Default is 200.")
48
+
errorBackoffMaxDurationMs=flag.Int("backoff-max-duration-ms", 300000, "The amount of ms for the max duration of the backoff condition for controller publish/unpublish CSI operations. Default is 300000 (5m).")
49
+
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")
46
50
47
51
attachDiskBackoffDuration=flag.Duration("attach-disk-backoff-duration", 5*time.Second, "Duration for attachDisk backoff")
48
52
attachDiskBackoffFactor=flag.Float64("attach-disk-backoff-factor", 0.0, "Factor for attachDisk backoff")
@@ -122,7 +126,9 @@ func handle() {
122
126
iferr!=nil {
123
127
klog.Fatalf("Failed to get cloud provider: %w", err)
0 commit comments