update verbose desc

This commit is contained in:
Yann Hamon 2020-12-15 22:12:41 +01:00
parent 532f07ed75
commit 0bbee68c49
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@ Usage: ./bin/kubeconform [OPTION]... [FILE OR FOLDER]...
-summary
print a summary at the end
-verbose
print results for all resources
print results for all resources (ignored for tap output)
```
### Usage examples

View file

@ -73,7 +73,7 @@ func FromFlags(progName string, args []string) (Config, string, error) {
flags.IntVar(&c.NumberOfWorkers, "n", 4, "number of goroutines to run concurrently")
flags.BoolVar(&c.Strict, "strict", false, "disallow additional properties not in schema")
flags.StringVar(&c.OutputFormat, "output", "text", "output format - json, tap, text")
flags.BoolVar(&c.Verbose, "verbose", false, "print results for all resources")
flags.BoolVar(&c.Verbose, "verbose", false, "print results for all resources (ignored for tap output)")
flags.BoolVar(&c.SkipTLS, "insecure-skip-tls-verify", false, "disable verification of the server's SSL certificate. This will make your HTTPS connections insecure")
flags.StringVar(&c.CPUProfileFile, "cpu-prof", "", "debug - log CPU profiling to file")
flags.BoolVar(&c.Help, "h", false, "show help information")