From e649ecf7c47ecd4734934299106104719c909f1d Mon Sep 17 00:00:00 2001 From: dvirlabs Date: Tue, 13 May 2025 05:24:36 +0300 Subject: [PATCH] Add manuall ingress yaml --- mailu-ingress-manuall.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 mailu-ingress-manuall.yaml diff --git a/mailu-ingress-manuall.yaml b/mailu-ingress-manuall.yaml new file mode 100644 index 0000000..6a4fd85 --- /dev/null +++ b/mailu-ingress-manuall.yaml @@ -0,0 +1,25 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: mailu-manuall + namespace: mail-services + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: websecure + traefik.ingress.kubernetes.io/router.tls: "true" +spec: + ingressClassName: traefik + tls: + - hosts: + - mail.dvirlabs.com + secretName: mailu-certificates + rules: + - host: mail.dvirlabs.com + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: mailu-front + port: + number: 443