/k8s-manifest-check

Primary LanguageGoBSD 2-Clause "Simplified" LicenseBSD-2-Clause

Kubernetes Manifest Check

Tools for checking Kubernetes YAML files.

At the moment the tools check Syntax and Resources in all pods, rc and deployments are set to a none zero value and cpu/memory request is below limit.

Install

go get github.com/seibert-media/k8s-manifest-check

Check all Kubernetes manifest files

find . \
-type f \
-name "*.yaml" \
-exec k8s-manifest-check "{}" +