Learn YAML - A step by step tutorial.
YAML is the abbreviated form of “YAML Ain’t markup language” is a human-readable data-serialization language. It is commonly used for configuration files and in applications where data is being stored or transmitted.
Data serialization is the process of translating data structure or a complex object state into a format that can be stored, transmitted and reconstructed later. The commonly used formats are YAML, JSON, CSV, and XML.
- YAML is widely used language for writing configurations for many different applications.
- YAML is more readable than JSON
- Cloudformation
- Kubernetes
- Docker
- Ansible
- Prometheus
- Helm
---
denotes the start of a new YAML...
denotes the end of the YAML document
YAML Validator: https://onlineyamltools.com/validate-yaml YAML to JSON Converter: https://onlineyamltools.com/convert-yaml-to-json