Skip to content

Commit

Permalink
Merge pull request #18 from cwdsuzhou/verison
Browse files Browse the repository at this point in the history
Add flag version
  • Loading branch information
k8s-ci-robot authored Mar 5, 2019
2 parents b862d4c + 2a738fe commit b4aa20a
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 b4aa20a

Please sign in to comment.