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 5, 2019
1 parent b862d4c commit 2a738fe
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"
"path"

"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.")
// Set by the build process
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 2a738fe

Please sign in to comment.