mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-19 01:47:02 +00:00
Update README, go.mod
This commit is contained in:
parent
86106b9293
commit
5b4686d78c
3 changed files with 4 additions and 3 deletions
|
|
@ -9,8 +9,9 @@ configuration using the schemas from the registry maintained by the
|
||||||
|
|
||||||
It is inspired by and similar to [Kubeval](https://github.com/instrumenta/kubeval), but with the
|
It is inspired by and similar to [Kubeval](https://github.com/instrumenta/kubeval), but with the
|
||||||
following improvements:
|
following improvements:
|
||||||
* **high performance**: will validate & download manifests over multiple routines
|
* **high performance**: will validate & download manifests over multiple routines, caching
|
||||||
* support for **Kubernetes CRDs**
|
downloaded files in memory
|
||||||
|
* configurable list of schemas registries, enabling validating Kubernetes custom resources (CRDs)
|
||||||
|
|
||||||
### A small overview of Kubernetes manifest validation
|
### A small overview of Kubernetes manifest validation
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
# Derived from https://github.com/instrumenta/openapi2jsonschema
|
||||||
import yaml
|
import yaml
|
||||||
import json
|
import json
|
||||||
import sys
|
import sys
|
||||||
|
|
|
||||||
1
go.mod
1
go.mod
|
|
@ -3,7 +3,6 @@ module github.com/yannh/kubeconform
|
||||||
go 1.14
|
go 1.14
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/instrumenta/kubeval v0.0.0-20200515185822-7721cbec724c
|
|
||||||
github.com/xeipuuv/gojsonschema v1.2.0
|
github.com/xeipuuv/gojsonschema v1.2.0
|
||||||
gopkg.in/yaml.v2 v2.3.0
|
gopkg.in/yaml.v2 v2.3.0
|
||||||
sigs.k8s.io/yaml v1.2.0
|
sigs.k8s.io/yaml v1.2.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue