-
Notifications
You must be signed in to change notification settings - Fork 1
/
recursed-istio.yml
76 lines (76 loc) · 1.19 KB
/
recursed-istio.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
apiVersion: v1
kind: Service
metadata:
name: recursed
labels:
app: recursed
spec:
ports:
- port: 8000
name: http
selector:
app: recursed
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: recursed
labels:
version: v1
spec:
replicas: 1
template:
metadata:
labels:
app: recursed
version: v1
spec:
containers:
- name: recursed
image: gregoryguillou/recursed:0.6.0
command:
- ./recursed
- -istio
- -remote
- http://recursed:8000
resources:
requests:
cpu: "100m"
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8000
---
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: recursed
spec:
selector:
istio: ingressgateway
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "*"
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: recursed
spec:
hosts:
- "*"
gateways:
- recursed
http:
- match:
- uri:
exact: /
route:
- destination:
host: recursed
port:
number: 8000
---