Add ingress + ingress sample and documentation

This commit is contained in:
Simon Belmas
2024-06-27 12:14:30 +02:00
parent c3d8cf38b4
commit 60048f74c7
4 changed files with 39 additions and 5 deletions

20
ingress.yaml Normal file
View File

@@ -0,0 +1,20 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: run
annotations:
route.openshift.io/termination: "edge"
spec:
rules:
- host: my.app.example.com
http:
paths:
- backend:
service:
name: html-kube-tester
port:
number: 80
path: /
pathType: Prefix
tls:
- {}