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
Copy file name to clipboardExpand all lines: cmd/csi-provisioner/csi-provisioner.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ var (
42
42
kubeconfig=flag.String("kubeconfig", "", "Absolute path to the kubeconfig file. Either this or master needs to be set if the provisioner is being run out of cluster.")
43
43
csiEndpoint=flag.String("csi-address", "/run/csi/socket", "The gRPC endpoint for Target CSI Volume")
44
44
connectionTimeout=flag.Duration("connection-timeout", 10*time.Second, "Timeout for waiting for CSI driver socket.")
45
-
volumeNamePrefix=flag.String("volume-name-prefix", "kubernetes-dynamic-pv", "Prefix to apply to the name of a created volume")
45
+
volumeNamePrefix=flag.String("volume-name-prefix", "pvc", "Prefix to apply to the name of a created volume")
46
46
volumeNameUUIDLength=flag.Int("volume-name-uuid-length", 16, "Length in characters for the generated uuid of a created volume")
0 commit comments