Added kubeval notes to the knowledge base

This commit is contained in:
Michele Cereda
2022-04-21 10:10:09 +02:00
parent 0102518a4f
commit 2c028ac664

19
knowledge base/kubeval.md Normal file
View File

@@ -0,0 +1,19 @@
# Kubeval
Validates one or more Kubernetes configuration files.
## TL;DR
```shell
$ kubeval my-invalid-rc.yaml || echo "Validation failed" >&2
WARN - my-invalid-rc.yaml contains an invalid ReplicationController - spec.replicas: Invalid type. Expected: integer, given: string
Validation failed
```
## Further readings
- [Kubeval]
- [Validating kubernetes YAML files with kubeval]
[kubeval]: https://www.kubeval.com
[validating kubernetes yaml files with kubeval]: https://learnk8s.io/validating-kubernetes-yaml#kubeval