mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 14:09:21 +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
|
||||
following improvements:
|
||||
* **high performance**: will validate & download manifests over multiple routines
|
||||
* support for **Kubernetes CRDs**
|
||||
* **high performance**: will validate & download manifests over multiple routines, caching
|
||||
downloaded files in memory
|
||||
* configurable list of schemas registries, enabling validating Kubernetes custom resources (CRDs)
|
||||
|
||||
### A small overview of Kubernetes manifest validation
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
# Derived from https://github.com/instrumenta/openapi2jsonschema
|
||||
import yaml
|
||||
import json
|
||||
import sys
|
||||
|
|
|
|||
1
go.mod
1
go.mod
|
|
@ -3,7 +3,6 @@ module github.com/yannh/kubeconform
|
|||
go 1.14
|
||||
|
||||
require (
|
||||
github.com/instrumenta/kubeval v0.0.0-20200515185822-7721cbec724c
|
||||
github.com/xeipuuv/gojsonschema v1.2.0
|
||||
gopkg.in/yaml.v2 v2.3.0
|
||||
sigs.k8s.io/yaml v1.2.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue