Skip to content

Commit b3f0355

Browse files
feat: add deployment template for kube-burner
1 parent 298ea01 commit b3f0355

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: api-intensive-{{.Replica}}
5+
labels:
6+
group: load
7+
svc: api-intensive-{{.Replica}}
8+
spec:
9+
replicas: 1
10+
selector:
11+
matchLabels:
12+
name: api-intensive-{{.Replica}}
13+
template:
14+
metadata:
15+
labels:
16+
group: load
17+
name: api-intensive-{{.Replica}}
18+
spec:
19+
containers:
20+
- image: registry.k8s.io/pause:3.1
21+
name: api-intensive-{{.Replica}}
22+
resources:
23+
requests:
24+
cpu: "1m"
25+
memory: "8Mi"
26+
limits:
27+
cpu: "5m"
28+
memory: "16Mi"
29+
dnsPolicy: Default
30+
terminationGracePeriodSeconds: 1

0 commit comments

Comments
 (0)