We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc5e5a commit e2dd82eCopy full SHA for e2dd82e
k8s/dev/istio-ingress.yaml
@@ -0,0 +1,35 @@
1
+apiVersion: networking.istio.io/v1alpha3
2
+kind: Gateway
3
+metadata:
4
+ name: simple-api-gateway
5
+ namespace: api
6
+spec:
7
+ selector:
8
+ istio: ingressgateway # use istio default controller
9
+ servers:
10
+ - port:
11
+ number: 80
12
+ name: http
13
+ protocol: HTTP
14
+ hosts:
15
+ - "dev.simple-api.127.0.0.1.sslip.io"
16
+---
17
18
+kind: VirtualService
19
20
+ name: simple-api-vs
21
22
23
24
25
+ gateways:
26
+ - simple-api-gateway
27
+ http:
28
+ - match:
29
+ - uri:
30
+ prefix: /
31
+ route:
32
+ - destination:
33
+ host: simple-api-service
34
+ port:
35
0 commit comments