Fix resources isues 6

This commit is contained in:
2026-01-22 11:30:36 +01:00
parent 0183f3ab72
commit 56d4aec5c4
3 changed files with 82 additions and 5 deletions

View File

@@ -1,3 +1,15 @@
# =============================================================================
# Mailu Ingress Configuration
# =============================================================================
# This is the base ingress template. Use the environment-specific versions:
#
# Development: dev/mailu-ingress.yaml (mail.bakery-ia.dev)
# Production: prod/mailu-ingress.yaml (mail.bakewise.ai)
#
# Deploy with:
# kubectl apply -f infrastructure/platform/mail/mailu-helm/dev/mailu-ingress.yaml # for dev
# kubectl apply -f infrastructure/platform/mail/mailu-helm/prod/mailu-ingress.yaml # for prod
# =============================================================================
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
@@ -16,16 +28,16 @@ spec:
ingressClassName: nginx
tls:
- hosts:
- mail.bakery-ia.dev
secretName: bakery-dev-tls-cert
- mail.DOMAIN_PLACEHOLDER
secretName: TLS_SECRET_PLACEHOLDER
rules:
- host: mail.bakery-ia.dev
- host: mail.DOMAIN_PLACEHOLDER
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: mailu-front # Helm release name 'mailu' + component 'front'
name: mailu-front
port:
number: 80
number: 80