Skip to content

Commit

Permalink
Merge pull request aquasecurity#15 from aquasecurity/fix-verbose-flag
Browse files Browse the repository at this point in the history
Bug Fix: Support for verbose flag
  • Loading branch information
danielsagi authored Jul 10, 2020
2 parents 770c446 + e24414d commit e9d4405
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kube-query.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ func main() {
socketPath := flag.String("socket", "", "absolute path to the osquery socket")

// currently we do not care for these flags, but they must be set for the auto loader of osquery
// the verbose flag is optionally given.
flag.String("timeout", "", "flag for specifying wait time before registering on autoload")
flag.String("interval", "", "flag for specifying wait time before registering on autoload")
flag.Bool("verbose", false, "show more verbose messages (not yet implemented)")

flag.Parse()
if len(*kubeconfig) == 0 {
Expand Down

0 comments on commit e9d4405

Please sign in to comment.