initial commit
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
This commit is contained in:
Scaffolder
2026-04-02 12:29:23 +00:00
commit 3527ed2b37
23 changed files with 1720 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
---
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

View File

@@ -0,0 +1,2 @@
resources:
- ingress.yaml