-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathistio-example-auth.yml
76 lines (76 loc) · 1.2 KB
/
istio-example-auth.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: Namespace
metadata:
labels:
istio-injection: enabled
name: dev
---
apiVersion: v1
kind: Service
metadata:
name: yaml-service
namespace: dev
spec:
selector:
app: yaml
ports:
- protocol: TCP
port: 3000
nodePort: 32345
type: NodePort
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: yaml-deployment
namespace: dev
spec:
selector:
matchLabels:
app: yaml
template:
metadata:
name: yaml-app
labels:
app: yaml
spec:
containers:
- name: yaml
image: sharathwe45/deserialization-app:latest
ports:
- containerPort: 3000
---
apiVersion: v1
kind: Service
metadata:
name: xxe-service
namespace: dev
spec:
selector:
app: xxe
ports:
- protocol: TCP
port: 5000
nodePort: 32346
type: NodePort
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: xxe-deployment
namespace: dev
spec:
selector:
matchLabels:
app: xxe
template:
metadata:
name: xxe-app
labels:
app: xxe
spec:
containers:
- name: xxe
image: sharathwe45/xxe-app:latest
ports:
- containerPort: 5000