Skip to content

Commit

Permalink
Add flag version
Browse files Browse the repository at this point in the history
  • Loading branch information
caiweidong committed Mar 1, 2019
1 parent c44a77d commit e18d8b6
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions cmd/hostpathplugin/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"flag"
"fmt"
"os"
"path"

"github.com/kubernetes-csi/csi-driver-host-path/pkg/hostpath"
)
Expand All @@ -29,14 +30,22 @@ func init() {
}

var (
endpoint = flag.String("endpoint", "unix://tmp/csi.sock", "CSI endpoint")
driverName = flag.String("drivername", "csi-hostpath", "name of the driver")
nodeID = flag.String("nodeid", "", "node id")
endpoint = flag.String("endpoint", "unix://tmp/csi.sock", "CSI endpoint")
driverName = flag.String("drivername", "csi-hostpath", "name of the driver")
nodeID = flag.String("nodeid", "", "node id")
showVersion = flag.Bool("version", false, "Show version.")
version = ""
)

func main() {
flag.Parse()

if *showVersion {
baseName := path.Base(os.Args[0])
fmt.Println(baseName, version)
return
}

handle()
os.Exit(0)
}
Expand Down

0 comments on commit e18d8b6

Please sign in to comment.