-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathhpa-real-v2.yml
60 lines (60 loc) · 1.06 KB
/
hpa-real-v2.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
apiVersion: apps/v1
kind: Deployment
metadata:
name: hpav2-web
spec:
selector:
matchLabels:
app: hpav2-web
replicas: 10
template:
metadata:
labels:
app: hpav2-web
spec:
containers:
- name: app
image: ondrejsika/go-hello-world:2
ports:
- containerPort: 80
resources:
requests:
cpu: 40m
memory: 30Mi
limits:
cpu: 80m
memory: 50Mi
---
apiVersion: v1
kind: Service
metadata:
name: hpa-service
spec:
type: NodePort
ports:
- port: 80
targetPort: 80
selector:
app: hpav2-web
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: hpav2
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: hpav2-web
minReplicas: 10
maxReplicas: 30
behavior:
scaleDown:
stabilizationWindowSeconds: 0
metrics:
- type: Resource
resource:
name: cpu
target:
averageUtilization: 90
type: Utilization