16 lines
351 B
YAML
16 lines
351 B
YAML
|
|
# Bind MTA-in port 25 to the host so inbound email reaches the pod directly.
|
||
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: messages-mta-in
|
||
|
|
namespace: lasuite
|
||
|
|
spec:
|
||
|
|
template:
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: messages-mta-in
|
||
|
|
ports:
|
||
|
|
- containerPort: 25
|
||
|
|
hostPort: 25
|
||
|
|
protocol: TCP
|