-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload-service.yaml
74 lines (74 loc) · 1.25 KB
/
upload-service.yaml
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
apiVersion: v1
kind: Namespace
metadata:
labels:
istio-injection: enabled
name: test
---
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: app-gateway
namespace: test
spec:
selector:
istio: ingressgateway
servers:
- port:
number: 80
name: simple-upload
protocol: HTTP
hosts:
- "*"
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: app-rule
namespace: test
spec:
gateways:
- app-gateway
hosts:
- "*"
http:
- route:
- destination:
host: upload-service.test.svc.cluster.local
port:
number: 5000
---
apiVersion: v1
kind: Service
metadata:
name: upload-service
namespace: test
spec:
selector:
app: simple-upload
ports:
- protocol: TCP
port: 5000
nodePort: 32346
type: NodePort
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: simple-upload-deployment
namespace: test
spec:
selector:
matchLabels:
app: simple-upload
template:
metadata:
name: simple-upload-app
labels:
app: simple-upload
spec:
containers:
- name: simple-upload
image: c0ld/simple-upload:latest
ports:
- containerPort: 5000