Glossary Format
YAML
YAML is a human-readable data format often used for configuration, infrastructure definitions, CI/CD pipelines, and content frontmatter.
YAML is a text format for structured data. People often meet it in configuration files: Ansible playbooks, Docker Compose files, CI/CD pipelines, Kubernetes manifests, and blog frontmatter.
Compared with JSON, YAML is easier to write by hand. It supports comments and usually looks less noisy. The trade-off is that indentation matters and some values can be interpreted in surprising ways if you are not explicit.
Treat YAML as code when it controls real systems. Keep it in version control, review changes, validate it with tools, and avoid copying huge blocks nobody understands just because the pipeline turned green once.