forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperf_k8svcs.yaml
85 lines (85 loc) · 1.89 KB
/
perf_k8svcs.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
75
76
77
78
79
80
81
82
83
84
85
# 2 services will get istio injected
---
apiVersion: v1
kind: Service
metadata:
name: echosrv1
spec:
ports:
- port: 8080
name: http-echo
- port: 8079
name: grpc-ping
selector:
app: echosrv1
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: echo-svc-deployment1
spec:
replicas: 1 # tells deployment to run 1 pods matching the template
template: # create pods using pod definition in this template
metadata:
# a unique name is generated from the deployment name
labels:
app: echosrv1
spec:
containers:
- name: echosrv
image: istio/fortio:latest_release
imagePullPolicy: Always # needed despite what is documented to really get latest
ports:
- containerPort: 8080
---
apiVersion: v1
kind: Service
metadata:
name: echosrv2
spec:
ports:
- port: 8080
name: http-echo
- port: 8079
name: grpc-ping
selector:
app: echosrv2
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: echo-svc-deployment2
spec:
replicas: 1 # tells deployment to run 1 pods matching the template
template: # create pods using pod definition in this template
metadata:
# a unique name is generated from the deployment name
labels:
app: echosrv2
spec:
containers:
- name: echosrv
image: istio/fortio:latest_release
imagePullPolicy: Always # needed despite what is documented to really get latest
ports:
- containerPort: 8080
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: istio
name: istio-ingress
spec:
rules:
- http:
paths:
- path: /fortio1/.*
backend:
serviceName: echosrv1
servicePort: http-echo
- path: /fortio2/.*
backend:
serviceName: echosrv2
servicePort: http-echo
---