Files
nginx-portal/k8s/08-ingress.yaml
qorgh529 dedb7af440
Some checks failed
Build and Push Images / build-backend (push) Has been cancelled
feat: Ingress + cert-manager + HTTPS 설정
2026-04-10 20:38:31 +09:00

28 lines
656 B
YAML
Executable File

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: web-portal-ingress
namespace: web-portal
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
nginx.ingress.kubernetes.io/ssl-redirect: "true"
nginx.ingress.kubernetes.io/proxy-read-timeout: "60"
nginx.ingress.kubernetes.io/proxy-connect-timeout: "10"
spec:
ingressClassName: nginx
tls:
- hosts:
- cyanburu.com
secretName: web-portal-tls
rules:
- host: cyanburu.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: frontend-service
port:
number: 80