Docs: Update Istio VirtualService example (#1006)

It's necessary to specify the destination port for Pomerium services
This commit is contained in:
Jeff Hubbach 2020-06-25 18:15:34 -07:00 committed by GitHub
parent c049d87362
commit a98d39c5af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,8 @@ spec:
- route:
- destination:
host: pomerium-proxy
port:
number: 80
---
apiVersion: networking.istio.io/v1beta1
kind: VirtualService
@ -27,4 +29,6 @@ spec:
- route:
- destination:
host: pomerium-authenticate
port:
number: 80
---