Files
petclinic/overlays/ingress/ingress.yaml
Scaffolder 990b3a3cf9
Some checks failed
CI Pipeline / Build and Test (push) Has been cancelled
Build and Publish TechDocs / build-and-publish (push) Has been cancelled
initial commit
Change-Id: If37942eee301313e92324db901aa26b6b4fbbde4
2026-03-24 18:20:56 +00:00

27 lines
586 B
YAML

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