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,23 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: simple-fanout-example
spec:
rules:
- host: foo.bar.com
http:
paths:
- path: /foo
pathType: Prefix
backend:
service:
name: service1
port:
number: 4200
- path: /bar
pathType: Prefix
backend:
service:
name: service2
port:
number: 8080