水平自动扩缩(HPA)
# HPA yaml文件常用配置项
# 1HPAv1
一代版本的 HPA 可以直接通过命令行来创建,更加简便,没必要使用 yaml 文件。
# 快速生成一个 HPA 的配置文件
kubectl autoscale deployment deploy-rep --min=2 --max=7 --cpu-percent=60 --dry-run=client -o yaml > deploy-rep.yaml
1
2
2
apiVersion: autoscaling/v1
kind: HorizontalPodAutoscaler
metadata:
creationTimestamp: null
name: deploy-rep
spec:
maxReplicas: 7
minReplicas: 2
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: deploy-rep
targetCPUUtilizationPercentage: 60
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
# 2HPAv2
二代版本的 HPA 无法直接通过命令行来创建,需要对一代 HPA 的文件进行修改。
以下 HPA 的版本为autoscaling/v2
- 设置内存度量值为百分比
50%
- 设置 CPU 度量值为绝对数值
280
个微核心
# rep-hpa2.yaml
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: deploy-rep
spec:
minReplicas: 2
maxReplicas: 7
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: deploy-rep
metrics:
- type: Resource
resource:
name: memory # 资源类型
target:
type: Utilization # 百分比
averageUtilization: 50 # 百分比
- type: Resource
resource:
name: cpu # 资源类型
target:
type: AverageValue # 绝对数值
averageValue: 280m # 绝对数值
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
编辑 (opens new window)