mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-19 01:47:02 +00:00
Update README
This commit is contained in:
parent
0048283a93
commit
fac08ee8cf
1 changed files with 15 additions and 5 deletions
20
Readme.md
20
Readme.md
|
|
@ -1,10 +1,15 @@
|
||||||
# Kubeconform
|
# Kubeconform
|
||||||
|
|
||||||
A Kubernetes manifests validation tool, inspired by & similar to [Kubeval](https://github.com/instrumenta/kubeval)
|
Kubeconform is a Kubernetes manifests validation tool. Build it into your CI to validate your Kubernetes
|
||||||
|
configuration using the schemas from the registry maintained by the
|
||||||
|
[kubernetes-json-schema](https://github.com/instrumenta/kubernetes-json-schema) project!
|
||||||
|
|
||||||
Notable features:
|
It is inspired by and similar to [Kubeval](https://github.com/instrumenta/kubeval), but with the
|
||||||
* high performance: will validate & download manifests over multiple routines
|
following improvements:
|
||||||
* support for Kubernetes CRDs
|
* **high performance**: will validate & download manifests over multiple routines
|
||||||
|
* support for **Kubernetes CRDs**
|
||||||
|
|
||||||
|
### Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
$ ./bin/kubeconform -h
|
$ ./bin/kubeconform -h
|
||||||
|
|
@ -26,7 +31,12 @@ Usage of ./bin/kubeconform:
|
||||||
-skipKinds string
|
-skipKinds string
|
||||||
comma-separated list of kinds to ignore
|
comma-separated list of kinds to ignore
|
||||||
-strict
|
-strict
|
||||||
activate strict mode
|
disallow additional properties not in schema
|
||||||
-workers int
|
-workers int
|
||||||
number of routines to run in parallel (default 4)
|
number of routines to run in parallel (default 4)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Credits
|
||||||
|
|
||||||
|
* @garethr for the [Kubeval](https://github.com/instrumenta/kubeval) and
|
||||||
|
[kubernetes-json-schema](https://github.com/instrumenta/kubernetes-json-schema) projects
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue