mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-18 17:37:03 +00:00
Update kubeconform -h output
In particular, the `-output pretty` option is missing.
This commit is contained in:
parent
b6728f181c
commit
d5a83c1e1d
1 changed files with 18 additions and 18 deletions
36
Readme.md
36
Readme.md
|
|
@ -103,39 +103,39 @@ $ go install github.com/yannh/kubeconform/cmd/kubeconform@latest
|
||||||
|
|
||||||
```
|
```
|
||||||
$ kubeconform -h
|
$ kubeconform -h
|
||||||
Usage: ./bin/kubeconform [OPTION]... [FILE OR FOLDER]...
|
Usage: kubeconform [OPTION]... [FILE OR FOLDER]...
|
||||||
-cache string
|
-cache string
|
||||||
cache schemas downloaded via HTTP to this folder
|
cache schemas downloaded via HTTP to this folder
|
||||||
-debug
|
-debug
|
||||||
print debug information
|
print debug information
|
||||||
-exit-on-error
|
-exit-on-error
|
||||||
immediately stop execution when the first error is encountered
|
immediately stop execution when the first error is encountered
|
||||||
-h show help information
|
-h show help information
|
||||||
-ignore-filename-pattern value
|
-ignore-filename-pattern value
|
||||||
regular expression specifying paths to ignore (can be specified multiple times)
|
regular expression specifying paths to ignore (can be specified multiple times)
|
||||||
-ignore-missing-schemas
|
-ignore-missing-schemas
|
||||||
skip files with missing schemas instead of failing
|
skip files with missing schemas instead of failing
|
||||||
-insecure-skip-tls-verify
|
-insecure-skip-tls-verify
|
||||||
disable verification of the server\'s SSL certificate. This will make your HTTPS connections insecure
|
disable verification of the server's SSL certificate. This will make your HTTPS connections insecure
|
||||||
-kubernetes-version string
|
-kubernetes-version string
|
||||||
version of Kubernetes to validate against, e.g.: 1.18.0 (default "master")
|
version of Kubernetes to validate against, e.g.: 1.18.0 (default "master")
|
||||||
-n int
|
-n int
|
||||||
number of goroutines to run concurrently (default 4)
|
number of goroutines to run concurrently (default 4)
|
||||||
-output string
|
-output string
|
||||||
output format - json, junit, tap, text (default "text")
|
output format - json, junit, pretty, tap, text (default "text")
|
||||||
-reject string
|
-reject string
|
||||||
comma-separated list of kinds or GVKs to reject
|
comma-separated list of kinds or GVKs to reject
|
||||||
-schema-location value
|
-schema-location value
|
||||||
override schemas location search path (can be specified multiple times)
|
override schemas location search path (can be specified multiple times)
|
||||||
-skip string
|
-skip string
|
||||||
comma-separated list of kinds or GVKs to ignore
|
comma-separated list of kinds or GVKs to ignore
|
||||||
-strict
|
-strict
|
||||||
disallow additional properties not in schema or duplicated keys
|
disallow additional properties not in schema or duplicated keys
|
||||||
-summary
|
-summary
|
||||||
print a summary at the end (ignored for junit output)
|
print a summary at the end (ignored for junit output)
|
||||||
-v show version information
|
-v show version information
|
||||||
-verbose
|
-verbose
|
||||||
print results for all resources (ignored for tap and junit output)
|
print results for all resources (ignored for tap and junit output)
|
||||||
```
|
```
|
||||||
|
|
||||||
### Usage examples
|
### Usage examples
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue