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 202c0af
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 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"
"strings"

"github.com/kubernetes-csi/csi-driver-host-path/pkg/hostpath"
)
Expand All @@ -29,14 +30,23 @@ 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 {
paths := strings.Split(os.Args[0], "/")
baseName := paths[len(paths)-1]
fmt.Println(baseName, version)
return
}

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

0 comments on commit 202c0af

Please sign in to comment.