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)")
37
37
runNodeService=flag.Bool("run-node-service", true, "If set to false then the CSI driver does not activate its node service (default: true)")
38
-
vendorVersionstring
38
+
versionstring
39
39
)
40
40
41
41
const (
@@ -62,10 +62,10 @@ func main() {
62
62
funchandle() {
63
63
varerrerror
64
64
65
-
ifvendorVersion=="" {
66
-
klog.Fatalf("vendorVersion must be set at compile time")
65
+
ifversion=="" {
66
+
klog.Fatalf("version must be set at compile time")
67
67
}
68
-
klog.V(2).Infof("Driver vendor version %v", vendorVersion)
68
+
klog.V(2).Infof("Driver vendor version %v", version)
69
69
70
70
gceDriver:=driver.GetGCEDriver()
71
71
@@ -79,7 +79,7 @@ func handle() {
79
79
//Initialize requirements for the controller service
0 commit comments