We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 298ea01 commit b3f0355Copy full SHA for b3f0355
tests/assets/steady-load/templates/deployment.yaml
@@ -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
13
+ template:
14
+ metadata:
15
16
17
18
+ spec:
19
+ containers:
20
+ - image: registry.k8s.io/pause:3.1
21
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