initial commit
Change-Id: Ia748646eaf5c18f44eb5b147ff577d0d5ee844e8
This commit is contained in:
10
overlays/deploy/kustomization.yaml
Normal file
10
overlays/deploy/kustomization.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
resources:
|
||||
- ../../k8s-specifications
|
||||
- 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: vote
|
||||
namespace: demo-apps
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: nginx
|
||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||
spec:
|
||||
ingressClassName: nginx
|
||||
tls:
|
||||
- hosts:
|
||||
- vote.kyndemo.live
|
||||
secretName: vote-kyndemo-live-tls
|
||||
rules:
|
||||
- host: vote.kyndemo.live
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: vote
|
||||
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