Files
petclinic-argo-doc/overlays/ingress/ingress.yaml
Scaffolder a140ffa5ac
Some checks failed
Build and Publish TechDocs / build-and-publish (push) Has been cancelled
initial commit
Change-Id: Id96aac808c34c664e630901ba7c3769325ee71c0
2026-06-08 16:20:54 +00:00

27 lines
621 B
YAML

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