-
Notifications
You must be signed in to change notification settings - Fork 1
/
tiktok.yaml
112 lines (105 loc) · 1.97 KB
/
tiktok.yaml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
apiVersion: apps/v1
kind: Deployment
metadata:
name: tiktok
namespace: tiktok
labels:
app: tiktok
spec:
replicas: 1
revisionHistoryLimit: 5
selector:
matchLabels:
app: tiktok
template:
metadata:
labels:
app: tiktok
spec:
containers:
- name: tiktok
image: chenrf1121/tiktok:v3
ports:
- containerPort: 8090
readinessProbe:
tcpSocket:
port: 8090
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
livenessProbe:
tcpSocket:
port: 8090
initialDelaySeconds: 15
periodSeconds: 20
timeoutSeconds: 5
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 100m
memory: 128Mi
volumeMounts:
- name: timezone
mountPath: /etc/localtime
volumes:
- name: timezone
hostPath:
path: /usr/share/zoneinfo/Asia/Shanghai
---
apiVersion: v1
kind: Service
metadata:
name: tiktok-svc
namespace: tiktok
spec:
ports:
- port: 8090
targetPort: 8090
selector:
app: tiktok
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: tiktok-hpa-c
namespace: tiktok
labels:
app: tiktok-hpa-c
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: tiktok
minReplicas: 3
maxReplicas: 10
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 80
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: tiktok-hpa-m
namespace: tiktok
labels:
app: tiktok-hpa-m
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: tiktok
minReplicas: 3
maxReplicas: 10
metrics:
- type: Resource
resource:
name: memory
target:
type: Utilization
averageUtilization: 80