plausible-hosting/k8s-manifests/mail-deployment.yaml

27 lines
454 B
YAML
Raw Normal View History

2020-10-08 04:07:58 -05:00
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: mail
name: mail
spec:
replicas: 1
selector:
matchLabels:
app: mail
strategy: {}
template:
metadata:
labels:
app: mail
spec:
containers:
- image: bytemark/smtp
imagePullPolicy: IfNotPresent
name: mail
resources: {}
2021-05-14 19:12:23 -05:00
ports:
- name: mail
containerPort: 25
2020-10-08 04:07:58 -05:00
restartPolicy: Always