Files
haproxy-unified/overlays/ingress/ingress.yaml
Scaffolder b6460c4ea3
All checks were successful
Build and Publish TechDocs / build-and-publish (push) Successful in 1m15s
initial commit
Change-Id: I2e2564a72b6be9af536235fc3795fd788fd9257b
2026-04-15 15:41:22 +00:00

27 lines
609 B
YAML

---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: haproxy-unified
namespace: demo-apps
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: nginx
tls:
- hosts:
- haproxy-unified.kyndemo.live
secretName: haproxy-unified-kyndemo-live-tls
rules:
- host: haproxy-unified.kyndemo.live
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: frontend
port:
number: 80