YAML Basics¶
Step-01: Comments & Key Value Pairs¶
- Space after colon is mandatory to differentiate key and value
Step-02: Dictionary / Map¶
- Set of properties grouped together after an item
- Equal amount of blank space required for all the items under a dictionary
Step-03: Array / Lists¶
- Dash indicates an element of an array
AWS EKS - Elastic Kubernetes Service - Masterclass¶
Step-04: Multiple Lists¶
- Dash indicates an element of an array
Step-05: Sample Pod Tempalte for Reference¶
apiVersion: v1 # String
kind: Pod # String
metadata: # Dictionary
name: myapp-pod
labels: # Dictionary
app: myapp
spec:
containers: # List
- name: myapp
image: stacksimplify/kubenginx:1.0.0
ports:
- containerPort: 80
protocol: "TCP"
- containerPort: 81
protocol: "TCP"
Additional Referece¶
# Simple Key value Pairs
person: # Dictionary
name: kalyan
age: 23
city: Hyderabd
hobbies: # List
- cooking
- cycling
friends: # Multiple lists
- name: friend1
age: 23
- name: friend2
age: 22
--- # YAML Document Separator
apiVersion: v1 # String
kind: Pod # String
metadata: # Dictionary
name: myapp-pod
labels: # Dictionary
app: myapp
tier: frontend
spec:
containers: # List
- name: myapp
image: stacksimplify/kubenginx:1.0.0
ports: # List
- containerPort: 80
protocol: "TCP"
- containerPort: 81
protocol: "TCP"
🎉 New Course
Ultimate DevOps Real-World Project Implementation on AWS
$15.99
$84.99
81% OFF
APRIL2026
Enroll Now on Udemy
🎉 Offer
