2018-03-04 17:01:38 +00:00
|
|
|
---
|
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: Ingress
|
|
|
|
metadata:
|
|
|
|
name: mailcatcher-ingress
|
|
|
|
namespace: authelia
|
|
|
|
annotations:
|
|
|
|
kubernetes.io/ingress.class: "nginx"
|
|
|
|
spec:
|
2019-03-03 22:51:52 +00:00
|
|
|
tls:
|
2021-04-10 20:51:00 +00:00
|
|
|
- secretName: mail-tls
|
|
|
|
hosts:
|
|
|
|
- mail.example.com
|
2018-03-04 17:01:38 +00:00
|
|
|
rules:
|
2021-04-10 20:51:00 +00:00
|
|
|
- host: mail.example.com
|
|
|
|
http:
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
backend:
|
|
|
|
serviceName: mailcatcher-service
|
|
|
|
servicePort: 1080
|
|
|
|
...
|