Skip to content

Commit

Permalink
fix for help usage command name
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Francois Chevrette committed Dec 8, 2015
1 parent 39a27f0 commit 8d3dc12
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

const (
appVersion = "0.1.0"
appVersion = "0.1.1"

// Nagios status codes
nagiosStatusOK = 0
Expand Down Expand Up @@ -74,6 +74,7 @@ func checkKubeNodes(c *cli.Context) {
func main() {
app := cli.NewApp()
app.Name = "check_kube_nodes"
app.HelpName = app.Name
app.Usage = "Nagios check to verify Kubernetes resources status"
app.Version = appVersion

Expand Down

0 comments on commit 8d3dc12

Please sign in to comment.