Files
awesome-kubernetes/docs/yaml.md
2020-12-14 11:35:41 +01:00

6.6 KiB
Raw Blame History

Templating YAML with YAML Processors. Static Checking of Kubernetes YAML Files

Templating YAML Files

YAML anchors and aliases

YAML Processors

Helm and Kustomize

Templating JSON Files

Static Checking of Kubernetes YAML Files

  • The ecosystem of static checking of Kubernetes YAML files can be grouped in the following categories:
    • API validators: Tools in this category validate a given YAML manifest against the Kubernetes API server.
    • Built-in checkers: Tools in this category bundle opinionated checks for security, best practices, etc.
    • Custom validators: Tools in this category allow writing custom checks in several languages such as Rego and Javascript.
  • Validating Kubernetes YAML for best practice and policies 🌟 In this article, you will learn and compare six different tools:

Alternatives