mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
41 lines
781 B
YAML
41 lines
781 B
YAML
app: penpot-infra
|
|
env: prod
|
|
namespace: penpot
|
|
manifests: |
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
namespace: penpot
|
|
metadata:
|
|
name: mailslurper
|
|
labels:
|
|
app: mailslurper
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: mailslurper
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mailslurper
|
|
spec:
|
|
containers:
|
|
- name: mailslurper
|
|
image: oryd/mailslurper:smtps-latest
|
|
ports:
|
|
- containerPort: 1025
|
|
- containerPort: 4436
|
|
- containerPort: 4437
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mailslurper
|
|
namespace: penpot
|
|
spec:
|
|
selector:
|
|
app: mailslurper
|
|
ports:
|
|
- protocol: TCP
|
|
port: 1025
|
|
targetPort: 1025
|