26 lines
727 B
YAML
26 lines
727 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: zozo-fe-ingress
|
|
namespace: empatnusabangsa-production
|
|
annotations:
|
|
kubernetes.io/ingress.class: "traefik"
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
traefik.ingress.kubernetes.io/router.middlewares: empatnusabangsa-production-redirect-https@kubernetescrd
|
|
spec:
|
|
rules:
|
|
- host: "zozo-prod.k3s.bangun-kreatif.com"
|
|
http:
|
|
paths:
|
|
- pathType: Prefix
|
|
path: /
|
|
backend:
|
|
service:
|
|
name: zozo-fe
|
|
port:
|
|
number: 3000
|
|
tls:
|
|
- hosts:
|
|
- "zozo-prod.k3s.bangun-kreatif.com"
|
|
secretName: zozo-prod-k3s-bangun-kreatif-com-tls
|