-
Notifications
You must be signed in to change notification settings - Fork 1
/
deployment.yaml
53 lines (53 loc) · 1.2 KB
/
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: mailhog
namespace: crapi
spec:
selector:
matchLabels:
app: mailhog
replicas: 1
minReadySeconds: 10
progressDeadlineSeconds: 600
template:
metadata:
labels:
app: mailhog
annotations:
sidecar.traceable.ai/inject: "false"
spec:
securityContext:
runAsUser: 0
runAsGroup: 0
containers:
- name: mailhog
image: mailhog/mailhog
imagePullPolicy: "IfNotPresent"
livenessProbe:
tcpSocket:
port: 1025
initialDelaySeconds: 15
periodSeconds: 60
readinessProbe:
tcpSocket:
port: 1025
initialDelaySeconds: 15
periodSeconds: 20
ports:
- containerPort: 8025
name: web
protocol: TCP
- containerPort: 1025
name: smtp
protocol: TCP
envFrom:
- configMapRef:
name: mailhog-configmap
resources:
limits:
cpu: "1"
memory: 1024Mi
requests:
cpu: 50m
memory: 64Mi