Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
thefoodiegalaxy committed May 3, 2020
1 parent 113e9ab commit d3a127e
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion isitoFiles/istioGateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,52 @@ spec:
- destination:
port:
number: 3002
host: frontend-service.default.svc.cluster.local
host: frontend-service.default.svc.cluster.local
---
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: orenda-egressgateway
spec:
selector:
istio: egressgateway
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "*"
---
apiVersion: networking.istio.io/v1alpha3
kind: ServiceEntry
metadata:
name: Orenda-ServiceEntry
spec:
hosts:
- "*"
ports:
- number: 80
name: http-port
protocol: HTTP
- number: 443
name: https
protocol: HTTPS
resolution: DNS
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: orenda-egress
spec:
hosts:
- "*"
gateways:
- orenda-egressgateway
http:
- match:
- route:
- destination:
host: "*"
port:
number: 80

0 comments on commit d3a127e

Please sign in to comment.