Add WIP Kubernetes support

This commit is contained in:
Caleb Woodbine
2020-10-08 22:07:58 +13:00
parent 3adc80359b
commit e59f03b970
9 changed files with 387 additions and 0 deletions

View File

@ -0,0 +1,23 @@
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: {}
restartPolicy: Always