Updating Ingress docs for 1.19

Co-authored-by: robscott <robertjscott@google.com>
This commit is contained in:
Christopher M. Luciano
2020-06-23 15:36:35 -04:00
committed by Rob Scott
parent d48be75067
commit 51f6e23f35
9 changed files with 204 additions and 152 deletions
@@ -0,0 +1,35 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: name-virtual-host-ingress-no-third-host
spec:
rules:
- host: first.bar.com
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: service1
port:
number: 80
- host: second.bar.com
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: service2
port:
number: 80
- http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: service3
port:
number: 80