Some checks failed
Security Scanning / Trivy — Filesystem & Dependency Scan (push) Failing after 6s
Build and Publish TechDocs / build-and-publish (push) Has started running
Security Scanning / Security Summary (push) Failing after 4s
CI Pipeline / Build and Test (push) Successful in 5s
Security Scanning / Gitleaks — Secret Scan (push) Failing after 5s
Change-Id: Ie7649ef66cbf8c04daf8a0473654b22a066be3e5
27 lines
616 B
YAML
27 lines
616 B
YAML
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: online-boutique
|
|
namespace: demo-apps
|
|
annotations:
|
|
kubernetes.io/ingress.class: nginx
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
spec:
|
|
ingressClassName: nginx
|
|
tls:
|
|
- hosts:
|
|
- online-boutique.kyndemo.live
|
|
secretName: online-boutique-kyndemo-live-tls
|
|
rules:
|
|
- host: online-boutique.kyndemo.live
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: online-boutique
|
|
port:
|
|
number: 80
|