initial commit
Some checks failed
Build and Publish TechDocs / build-and-publish (push) Has been cancelled
Some checks failed
Build and Publish TechDocs / build-and-publish (push) Has been cancelled
Change-Id: I8eb0d9b567252c713d6cdaaab45ee1ff89cc9e6f
This commit is contained in:
12
overlays/deploy/kustomization.yaml
Normal file
12
overlays/deploy/kustomization.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
resources:
|
||||
|
||||
- ../../k8s
|
||||
|
||||
- k6-configmap.yaml
|
||||
|
||||
- ../ingress
|
||||
|
||||
|
||||
26
overlays/ingress/ingress.yaml
Normal file
26
overlays/ingress/ingress.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: petclinic-demo-andrej2
|
||||
namespace: demo-apps
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: nginx
|
||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||
spec:
|
||||
ingressClassName: nginx
|
||||
tls:
|
||||
- hosts:
|
||||
- petclinic-demo-andrej2.kyndemo.live
|
||||
secretName: petclinic-demo-andrej2-kyndemo-live-tls
|
||||
rules:
|
||||
- host: petclinic-demo-andrej2.kyndemo.live
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: frontend
|
||||
port:
|
||||
number: 80
|
||||
2
overlays/ingress/kustomization.yaml
Normal file
2
overlays/ingress/kustomization.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
resources:
|
||||
- ingress.yaml
|
||||
Reference in New Issue
Block a user