-
Notifications
You must be signed in to change notification settings - Fork 0
/
jmeter-deployment.yaml
53 lines (53 loc) · 1.34 KB
/
jmeter-deployment.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
kind: Deployment
apiVersion: apps/v1
metadata:
name: jmeter-container
labels:
app.kubernetes.io/part-of: jmeter-container-app
spec:
replicas: 1
selector:
matchLabels:
app: jmeter-container
template:
metadata:
labels:
app: jmeter-container
deployment: jmeter-container
spec:
volumes:
- name: jmeter-test
configMap:
name: jmeter-test
defaultMode: 420
containers:
- resources: {}
terminationMessagePath: /dev/termination-log
name: jmeter-container
ports:
- containerPort: 9080
protocol: TCP
- containerPort: 9443
protocol: TCP
imagePullPolicy: Always
volumeMounts:
- name: jmeter-test
mountPath: /etc/jmeter-driver
terminationMessagePolicy: File
envFrom:
- configMapRef:
name: cm-params
image: >-
quay.io/mmondics/jmeter-container:latest
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: ClusterFirst
securityContext: {}
schedulerName: default-scheduler
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600