Update README, go.mod

This commit is contained in:
Yann Hamon 2020-10-17 17:00:34 +02:00
parent 86106b9293
commit 5b4686d78c
3 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -1,5 +1,6 @@
#!/usr/bin/env python
# Derived from https://github.com/instrumenta/openapi2jsonschema
import yaml
import json
import sys

1
go.mod
View file

@ -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