- management - Added ingress files for MinIO (API and Console) and pgweb - Updated kustomization files to include ingress resources - Migrated from centralized ingress management to per-app architecture
37 lines
818 B
YAML
37 lines
818 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: pgweb-ingress
|
|
namespace: pgweb
|
|
annotations:
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
spec:
|
|
ingressClassName: haproxy
|
|
tls:
|
|
- hosts:
|
|
- pgweb0213.kro.kr
|
|
- www.pgweb0213.kro.kr
|
|
secretName: pgweb-tls
|
|
rules:
|
|
- host: pgweb0213.kro.kr
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: pgweb
|
|
port:
|
|
number: 80
|
|
- host: www.pgweb0213.kro.kr
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: pgweb
|
|
port:
|
|
number: 80
|