mirror of
https://github.com/nubenetes/awesome-kubernetes.git
synced 2026-04-22 10:26:35 +00:00
6.6 KiB
6.6 KiB
Templating YAML with YAML Processors. Static Checking of Kubernetes YAML Files
Templating YAML Files
- wikipedia: YAML
- redhat.com: YAML for beginners YAML is an easy, expressive, data-oriented language that distinguishes itself from document markup languages.
- thoughtworks.com: Templating in YAML As infrastructures grow in complexity, so do the configuration files that define them. Tools such as AWS CloudFormation, Kubernetes and Helm expect configuration files in JSON or YAML syntax, presumably in an attempt to make them easy to write and process. However, in most cases, teams quickly reach the point where they have some parts that are similar but not quite the same, for example, when the same service must be deployed in different regions with a slightly different setup. For such cases tools offer templating in YAML (or JSON), which has caused a huge amount of frustration with practitioners. The problem is that the syntax of JSON and YAML requires all sorts of awkward compromises to graft templating features such as conditionals and loops into the files. We recommend using an API from a programming language instead or, when this is not an option, a templating system in a programming language, either a general-purpose language such as Python or something specialized such as Jsonnet.
- Steve Horsfield: DevOps tricks - Templating YAML files Basic text tools fall foul of YAML’s indentation sensitivity. On the other hand, YAML tools like ytt are pretty difficult to interpret. In my case, I opted for a small jq program executed via yq.
- redhat.com: Understanding YAML for Ansible. Validating YAML files with YAMLlint 🌟 Ansible playbooks are written in YAML, YAML Ain't Markup Language. Understanding YAML syntax is a key to success with Ansible.
- linuxhandbook.com: YAML Basics Every DevOps Engineer Must Know 🌟
YAML anchors and aliases
- yaml.org: Anchors and Aliases
- support.atlassian.com: YAML anchors and aliases
- medium: Don’t Repeat Yourself with Anchors, Aliases and Extensions in Docker Compose Files
- docs.ansible.com: YAML anchors and aliases: sharing variable values
YAML Processors
- github.com/topics/yaml-processor
- ytt is a templating tool that understands YAML structure allowing you to focus on your data instead of how to properly escape it.
- You should use tools such as yq and kustomize to template YAML resources instead of relying on tools that interpolate strings such as Helm.
- yq 🌟 is a lightweight and portable command-line YAML processor. The aim of the project is to be the jq or sed of yaml files.
yqallows to query the yaml tree and highlights it:k get svc a -oyaml | yq r - - Kapitan Generic templated configuration management for Kubernetes, Terraform and other things.
- yaml.sh A YAML parser completely in bash. Yaml.sh — YAML Sans Helm
- yh - YAML Highlighter is YAML syntax highlighter that works nicely with kubectl output
- Kubectl output options 🌟
Helm and Kustomize
- dex.dev: YAML Templating Solutions: Helm & Kustomize Writing config files by hand is like coding with Notepad instead of an IDE. Let's find a better way, and take an overview of the popular solutions Helm & Kustomize.
Templating JSON Files
- wikipedia: JSON
- json.org: Introducing JSON
- Jsonnet A data templating language for app and tool developers
- Building a high performance JSON parser
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: