Files
otel-demo/overlays/ingress/ingress.yaml
Scaffolder 92edf90fd9
Some checks failed
CI Pipeline / Build and Test (push) Successful in 4s
Security Scanning / Trivy — Filesystem & Dependency Scan (push) Failing after 7s
Security Scanning / Gitleaks — Secret Scan (push) Failing after 7s
Security Scanning / Security Summary (push) Failing after 3s
Build and Publish TechDocs / build-and-publish (push) Successful in 1m2s
initial commit
Change-Id: I8e318861a258686ddc53dda08858f74c573a6520
2026-04-02 13:07:28 +00:00

27 lines
586 B
YAML

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