Frequently Asked Questions about YAML
Explore comprehensive answers to common questions about YAML (YAML Ain't Markup Language). Learn about YAML syntax, structure, use cases, and how it compares to other data formats.
YAML vs JSON Comparison
Compare the same data structure in YAML and JSON formats to see the differences in syntax and readability.
# Ejemplo de configuración en YAML
service:
name: mi-aplicacion
version: 1.0.0
environment: production
features:
- autenticacion
- api
- cache
database:
host: localhost
port: 5432
credentials:
username: admin
password: secreto
scaling:
min_instances: 2
max_instances: 10
# Usando anclas y alias YAML
default_labels: &default
environment: production
managed_by: devops
labels:
<<: *default # Reutilizando las etiquetas predeterminadas
app: mi-aplicacion
version: 1.0.0
---
# Documento múltiple - Configuración de prueba
service:
<<: *default # Reutilizando la configuración base
environment: testing
database:
host: localhost
port: 5432