控制器(Deployment)
# Deployment yaml文件常用配置项
# 1一个简单的Deployment控制器
快速生成一个 Deployment 的配置文件。
kubectl create deployment deploy-test --image nginx --dry-run=client -o yaml > deploy-test.yaml
1
文件内容:
apiVersion
:Deployment 的 API 版本是固定的apps/v1
kind
:写的是资源名称Deployment
metadata
:和其他资源一样,包含当前资源的元数据信息spec
:包含 Deployment 的具体配置内容
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
app: deploy-test
name: deploy-test
spec:
replicas: 1
selector:
matchLabels:
app: deploy-test
strategy: {}
template:
metadata:
creationTimestamp: null
labels:
app: deploy-test
spec:
containers:
- image: nginx
name: nginx
resources: {}
status: {}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# specspec.replicas
需要维持的 Pod 数量(副本数)。
spec:
replicas: 1
1
2
2
# specspec.template
Pod 模板,和标准的 Pod 配置文件基本一致,只有少部分区别:
- Pod 模板里没有
apiVersion
字段 - Pod 模板里没有
kind
字段 - Pod 模板里没有
metadata.name
字段
spec:
template:
metadata:
creationTimestamp: null
labels:
app: deploy-test
spec:
containers:
- image: nginx
name: nginx
resources: {}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
# specspec.selector.matchLabels
根据哪些标签来追踪 Pod。
# spec.selector.matchLabels
键值对的形式,和设置标签时一样。
spec:
selector:
matchLabels:
<键>: <值>
...
1
2
3
4
5
2
3
4
5
# spec.selector.matchExpressions
高级用法,标签表达式(又称为 “选择算符”)。
# (1)同键不同值
- 操作
In
,追踪具有标签run=abc/xyz/jkl
(三追一)的任意 Pod - 操作
NotIn
,不追踪具有标签run=ufo
的任意 Pod
# 第一种编写格式,一字排开的折叠法
spec:
selector:
matchExpressions:
- { key: run, operator: In, values: [abc, xyz, jkl] }
- { key: run, operator: NotIn, values: [ufo] }
1
2
3
4
5
6
2
3
4
5
6
另一种编写格式。
# 第二种编写格式,展开法
spec:
selector:
matchExpressions:
- key: run
operator: In
values:
- abc
- xyz
- jkl
- key: run
operator: NotIn
values:
- ufo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
# (2)某个键是否存在/不存在
- 追踪标签键名为
healthy
的 Pod - 拒绝带有
bad
标签的 Pod
spec:
selector:
matchExpressions:
- { key: healthy, operator: Exists}
- { key: bad, operator: DoesNotExist}
1
2
3
4
5
2
3
4
5
注意
Exists
后面有字母s
,而DoesNotExist
后面是没有的。
# specspec.strategy
滚动更新。
maxSurge
:当镜像被变更时,依次创建25%
个新的 PodmaxUnavailable
:当镜像被变更时,依次删除25%
个旧的 Pod
...
spec:
strategy: # 控制器策略
rollingUpdate: # 滚动更新参数
maxSurge: 25%
maxUnavailable: 25%
type: RollingUpdate # 策略类型
1
2
3
4
5
6
7
2
3
4
5
6
7
如果不想使用百分比,也可以改为使用绝对数值。
...
spec:
strategy:
rollingUpdate:
maxSurge: 2 # 依次创建两个新的 Pod
maxUnavailable: 2 # 依次删除两个旧的 Pod
type: RollingUpdate
1
2
3
4
5
6
7
2
3
4
5
6
7
提示
若你没有配置滚动更新,那么默认值皆为25%
。
编辑 (opens new window)