-
Notifications
You must be signed in to change notification settings - Fork 0
/
mail-deployment.yaml
45 lines (45 loc) · 1.22 KB
/
mail-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
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
annotations:
kompose.cmd: kompose --file docker-compose.yml convert --volumes hostPath
kompose.version: 1.19.0 (f63a961c)
creationTimestamp: null
labels:
io.kompose.service: mail
name: mail
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
annotations:
kompose.cmd: kompose --file docker-compose.yml convert --volumes hostPath
kompose.version: 1.19.0 (f63a961c)
creationTimestamp: null
labels:
io.kompose.service: mail
spec:
containers:
- env:
- name: MAILNAME
image: itsissa/namshi-smtp:4.89-2.deb9u5
name: mail
resources: {}
volumeMounts:
- mountPath: /etc/exim4/_docker_additional_macros
name: mail-hostpath0
readOnly: true
- mountPath: /etc/exim4/domain.key
name: mail-hostpath1
readOnly: true
restartPolicy: Always
volumes:
- hostPath:
path: /home/akurnya/odk/home/akurnya/odk/files/dkim/config
name: mail-hostpath0
- hostPath:
path: /home/akurnya/odk/home/akurnya/odk/files/dkim/rsa.private
name: mail-hostpath1
status: {}