Intro Yaml

Intro Yaml

Intro Yaml

Yaml

yaml is Yet Another Markup Language

yaml is not Markup Language

1
2
3
4
5
# => 註解

--- => 區別不同物件

: 之後一定要空格

example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
spec:
selector:
matchLabels:
app:
replicas:
template:
metadata:
labels:
app: nginx
spec:
以下省略