Files
oam/knowledge base/kubernetes/kubeval.md
2023-07-09 21:35:14 +02:00

44 lines
914 B
Markdown

# Kubeval
Validates one or more Kubernetes configuration files.
## Table of contents <!-- omit in toc -->
1. [TL;DR](#tldr)
1. [Further readings](#further-readings)
1. [Sources](#sources)
## TL;DR
```sh
$ 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]
## Sources
All the references in the [further readings] section, plus the following:
- [Validating kubernetes YAML files with kubeval]
<!--
References
-->
<!-- Upstream -->
[kubeval]: https://www.kubeval.com
<!-- In-article sections -->
[further readings]: #further-readings
<!-- Knowledge base -->
[kubernetes]: README.md
<!-- Others -->
[validating kubernetes yaml files with kubeval]: https://learnk8s.io/validating-kubernetes-yaml#kubeval