mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 22:19:25 +00:00
Default to non-strict
This commit is contained in:
parent
11cfca1498
commit
1f176b8255
1 changed files with 1 additions and 1 deletions
2
main.go
2
main.go
|
|
@ -104,7 +104,7 @@ func realMain() int {
|
|||
flag.IntVar(&nWorkers, "workers", 4, "number of routines to run in parallel")
|
||||
flag.StringVar(&k8sVersion, "k8sversion", "1.18.0", "version of Kubernetes to test against")
|
||||
flag.StringVar(&skipKinds, "skipKinds", "", "comma-separated list of kinds to ignore")
|
||||
flag.BoolVar(&strict, "strict", true, "activate strict mode")
|
||||
flag.BoolVar(&strict, "strict", false, "activate strict mode")
|
||||
flag.StringVar(&outputFormat, "output", "text", "output format - text, json")
|
||||
flag.BoolVar(&quiet, "quiet", false, "quiet output - only print invalid files, and errors")
|
||||
flag.Parse()
|
||||
|
|
|
|||
Loading…
Reference in a new issue