mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 14:09:21 +00:00
update verbose desc
This commit is contained in:
parent
532f07ed75
commit
0bbee68c49
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in a new issue