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-proxy/main.go
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -23,10 +23,9 @@ import (
23
23
)
24
24
25
25
var (
26
-
kubeletCSIPluginsPath=flag.String("kubelet-csi-plugins-path", `C:\var\lib\kubelet`, "Prefix path of the Kubelet plugin directory in the host file system")
27
-
kubeletPodPath=flag.String("kubelet-pod-path", `C:\var\lib\kubelet`, "Prefix path of the kubelet pod directory in the host file system")
28
-
windowsSvc=flag.Bool("windows-service", false, "Configure as a Windows Service")
29
-
service*handler
26
+
kubeletPath=flag.String("kubelet-path", `C:\var\lib\kubelet`, "Prefix path of the kubelet directory in the host file system")
27
+
windowsSvc=flag.Bool("windows-service", false, "Configure as a Windows Service")
28
+
service*handler
30
29
)
31
30
32
31
typehandlerstruct {
@@ -61,7 +60,7 @@ func main() {
61
60
62
61
// apiGroups returns the list of enabled API groups.
0 commit comments